javascript - Google groundOverlay Skew? -


i using google maps api add overlays map. i'm not having trouble adding overlays want since found nifty jsfiddle determine corners on map: http://jsfiddle.net/4cwcw/3/

but discovered google skews of image overlays, ones more north or south. makes sense since map 2d projection of globe , skewing happens, don't want google impose on overlays. i wondering if there way correct this?

overlay method(javascript):

var imagebounds = new google.maps.latlngbounds(     new google.maps.latlng(42, 27.9),     new google.maps.latlng(80, -168.6));  var tempoverlay = new google.maps.groundoverlay("ru2.png", imagebounds); tempoverlay.setmap(map); 

specifically here, have silhouette of russia want place on map, stretches top of image without changing lower part of it, can't line county location.


Comments

Popular posts from this blog

python - Installing PyDev in eclipse is failed -

PHP OOP-based login system -

c# - Nested Internal Class with Readonly Hashtable throws Null ref exception.. on assignment -