Loading...
Logo
Processing Forum
Hi,

In the source of an html page I have this  : var latlng = new google.maps.LatLng(49.44305, 1.1025);
 I would like to modify 49.44305 and 1.1025 from a sketch running in the same page. Is it possible ?
Thanks

Replies(2)

Yes,

you need the Netscape.JavaScript libraries.  See http://www.processing.org/reference/libraries/ and the link given there for Netscape.JavaScript for more detailled info.

It could go along the following line:

In your javascript code:

embed the variable assignment into a function:

var latlng;

var setLatLng = function(latitude,longitude) {
   latlng = new google.maps.LatLng(latitude,longitude);



In your processing sketch:

- in the preamble:

Copy code
  1. import netscape.javascript.*;
  2.  
  3. JSObject window;


- in your setup() method:

Copy code
  1. try {
  2.   window = JSObject.getWindow(this);
  3. } catch (JSException e) {
  4.   println("Standalone application");
  5. }

- in your method where you would like to pass the parameters:

Copy code
  1. try {
  2.   window.eval("setLatLng(" + mylatitude + "," + mylongitude + ")");
  3. } catch (JSException e) {
  4. ) catch (NullPointerException e) {
  5. }

It's good mbraendle ! Thank you !