(latitude, longitude,bounds,scale,xoffset,yoffset)
| 3567 | } |
| 3568 | |
| 3569 | function coordinateToPoint(latitude, longitude,bounds,scale,xoffset,yoffset) { |
| 3570 | return { |
| 3571 | x: (longitude - bounds.xMin) * scale+xoffset, |
| 3572 | y: (bounds.yMax - latitude) * scale+yoffset |
| 3573 | }; |
| 3574 | } |
| 3575 | |
| 3576 | function pointToCoordinate(pointY, pointX,bounds,scale,xoffset,yoffset) { |
| 3577 | return { |