CoString of 2D Canvas Rectangles
View this example in sandbox :
o,109.72328593151204,214.0909703111111&z,15&r,2,ef1568,1,61ed04,0.3,67.72328593151204,70.0909703111111,28.723285931512038,162.0909703111111
View this example full screen.
View this example in sandbox :
o,109.72328593151204,214.0909703111111&z,15&r,2,ef1568,1,61ed04,0.3,67.72328593151204,70.0909703111111,28.723285931512038,162.0909703111111
function initialize() { var oMapOptions = { coStrType: zhupiter.CoStr.CoStrType.CANVAS2D, center: new zhupiter.CoStr.Point2D(214.0909703111111, 109.72328593151204), zoom: 15 }; var oCoStrMap = new zhupiter.CoStr.Map(document.getElementById('map_canvas'), oMapOptions); var oRectangle = new zhupiter.CoStr.Rectangle({ coStrMap: oCoStrMap, strokeWeight: 2, strokeColor: '#ef1568', strokeOpacity: 0.8, fillColor: '#61ed04', fillOpacity: 0.3, bounds: new zhupiter.CoStr.Bounds2D( new zhupiter.CoStr.Point2D(70.0909703111111, 67.72328593151204), new zhupiter.CoStr.Point2D(162.0909703111111, 28.723285931512038)) }); } 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 Rectangles</title> <style> html, body, #map_canvas { height: 100%; margin: 0px; padding: 0px } </style> <script src='//costr.zhupiter.com/js/'></script> <script> function initialize() { var oMapOptions = { coStrType: zhupiter.CoStr.CoStrType.CANVAS2D, center: new zhupiter.CoStr.Point2D(214.0909703111111, 109.72328593151204), zoom: 15 }; var oCoStrMap = new zhupiter.CoStr.Map(document.getElementById('map_canvas'), oMapOptions); var oRectangle = new zhupiter.CoStr.Rectangle({ coStrMap: oCoStrMap, strokeWeight: 2, strokeColor: '#ef1568', strokeOpacity: 0.8, fillColor: '#61ed04', fillOpacity: 0.3, bounds: new zhupiter.CoStr.Bounds2D( new zhupiter.CoStr.Point2D(70.0909703111111, 67.72328593151204), new zhupiter.CoStr.Point2D(162.0909703111111, 28.723285931512038)) }); } zhupiter.CoStr.event.addDomListener(window, 'load', initialize); </script> </head> <body> <div id='map_canvas'></div> </body> </html>
CoString | Donate bitcoin: 1LX5KC19tXCPK8y72Z6LVoZjoSaCp9P6K