CoString of GMap Getting properties with event handlers
View this example in sandbox :
o,24.88065,121.065427&z,12
View this example full screen.
View this example in sandbox :
o,24.88065,121.065427&z,12
function initialize() { var oMapOptions = { coStrType: zhupiter.CoStr.CoStrType.GMAP, center: new google.maps.LatLng(24.880650, 121.065427), zoom: 12 }; var oCoStrMap = new zhupiter.CoStr.Map(document.getElementById('map_canvas'), oMapOptions); var oInfoWindow = new zhupiter.CoStr.InfoWindow({ coStrMap: oCoStrMap, position: oCoStrMap.getCenter(), content: 'Change the map center' }); zhupiter.CoStr.event.addListener(oCoStrMap, 'center_changed', function() { var oCenter = oCoStrMap.getCenter(); oInfoWindow.setContent('Center y,x : ' + oCenter.lat() + ' , ' + oCenter.lng()); }); } zhupiter.CoStr.event.addDomListener(window, 'load', initialize);
<!DOCTYPE html> <html> <head> <meta name='viewport' content='initial-scale=1.0, user-scalable=no'> <meta charset='utf-8'> <title>GMap Getting properties with event handlers</title> <style> html, body, #map_canvas { height: 100%; margin: 0px; padding: 0px } </style> <script src='https://maps.googleapis.com/maps/api/js'></script> <script src='//costr.zhupiter.com/js/'></script> <script> function initialize() { var oMapOptions = { coStrType: zhupiter.CoStr.CoStrType.GMAP, center: new google.maps.LatLng(24.880650, 121.065427), zoom: 12 }; var oCoStrMap = new zhupiter.CoStr.Map(document.getElementById('map_canvas'), oMapOptions); var oInfoWindow = new zhupiter.CoStr.InfoWindow({ coStrMap: oCoStrMap, position: oCoStrMap.getCenter(), content: 'Change the map center' }); zhupiter.CoStr.event.addListener(oCoStrMap, 'center_changed', function() { var oCenter = oCoStrMap.getCenter(); oInfoWindow.setContent('Center y,x : ' + oCenter.lat() + ' , ' + oCenter.lng()); }); } zhupiter.CoStr.event.addDomListener(window, 'load', initialize); </script> </head> <body> <div id='map_canvas'></div> </body> </html>
坐标物语 | 赞助比特币: 1LX5KC19tXCPK8y72Z6LVoZjoSaCp9P6K