CoString of 2D Canvas Simple Markers
View this example in sandbox :
o,109.72328593151204,214.0909703111111&z,12&m,109.72328593151204,214.0909703111111
View this example full screen.
View this example in sandbox :
o,109.72328593151204,214.0909703111111&z,12&m,109.72328593151204,214.0909703111111
function initialize() { var oPos = new zhupiter.CoStr.Point2D(214.0909703111111, 109.72328593151204); var oMapOptions = { coStrType: zhupiter.CoStr.CoStrType.CANVAS2D, center: oPos, zoom: 12 }; var oCoStrMap = new zhupiter.CoStr.Map(document.getElementById('map_canvas'), oMapOptions); var oMarker = new zhupiter.CoStr.Marker({ coStrMap: oCoStrMap, position: oPos, title: 'Hello World!' }); } 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>2D Canvas Simple Markers</title> <style> html, body, #map_canvas { height: 100%; margin: 0px; padding: 0px } </style> <script src='//costr.zhupiter.com/js/'></script> <script> function initialize() { var oPos = new zhupiter.CoStr.Point2D(214.0909703111111, 109.72328593151204); var oMapOptions = { coStrType: zhupiter.CoStr.CoStrType.CANVAS2D, center: oPos, zoom: 12 }; var oCoStrMap = new zhupiter.CoStr.Map(document.getElementById('map_canvas'), oMapOptions); var oMarker = new zhupiter.CoStr.Marker({ coStrMap: oCoStrMap, position: oPos, title: 'Hello World!' }); } zhupiter.CoStr.event.addDomListener(window, 'load', initialize); </script> </head> <body> <div id='map_canvas'></div> </body> </html>
CoString | Donate bitcoin: 1LX5KC19tXCPK8y72Z6LVoZjoSaCp9P6K