Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi! How to add latitude to the coordinate? I get the coordinate like this:
visibleRegion.boundingGeoRectangle().topLeft
How to add to coordinate
visibleRegion.boundingGeoRectangle().width / 100
it is not work
a = visibleRegion.boundingGeoRectangle().topLeft a.setLatitude(a.latitude + visibleRegion.boundingGeoRectangle().width )
it is work:
console.log("широта :" + visibleRegion.boundingGeoRectangle().topLeft.latitude) var a = visibleRegion.boundingGeoRectangle().topLeft a.latitude = 56 console.log("широта + 1 :" + a)