Ok so i have these cords:

55.623151, 8.48215

I would like to see the geo codes 5 km from north, south, east, west from this geo location above^.

How can i do this?

link|improve this question

77% accept rate
What do you mean by geo codes? Lat/lng coordinates? – Jiri Oct 22 '11 at 11:01
@Jiri yes that is what i mean – Karem Oct 22 '11 at 11:02
feedback

1 Answer

up vote 3 down vote accepted

If you use Google Maps API v3, then you would proceed as follows:

Include the Geometry library into your Web page for Spherical Computations:

<script type="text/javascript" 
    src="http://maps.googleapis.com/maps/api/js?libraries=geometry&sensor=false"> 
</script>

Then you can compute:

var point = new google.maps.LatLng(55.623151, 8.48215);
var spherical = google.maps.geometry.spherical; 
var north = spherical.computeOffset(point, 5000, 0); 
var west  = spherical.computeOffset(point, 5000, -90); 
var south = spherical.computeOffset(point, 5000, 180); 
var east  = spherical.computeOffset(point, 5000, 90); 

You can check a running version on jsfiddle.

link|improve this answer
When i try to var north = computeOffset(point, 5000, 0); alert('test:' +north); i get no alert at all? not even test: ... – Karem Oct 22 '11 at 12:37
@Karem: the geometry functions need to be qualified. I updated my answer correspondingly. – Jiri Oct 22 '11 at 13:49
now everything is NaN – Karem Oct 22 '11 at 14:08
@Karem: I added a running program. When you have problems with spherical, then use google.maps.geometry.spherical.computeOffset(point, 5000, 0); – Jiri Oct 22 '11 at 15:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.