Created
June 2, 2016 13:07
-
-
Save jonniedarko/09d055dcd891f4d0f68dbed7d7fac77d to your computer and use it in GitHub Desktop.
Make google maps fit a radius and pos - based on http://www.movable-type.co.uk/scripts/latlong.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function toRad(num) { | |
return num * Math.PI / 180; | |
}, | |
function toDeg(num) { | |
return num * 180 / Math.PI; | |
}, | |
function destinationPoint(LatLng, bearingDegrees, radiusMeters) { | |
dist = radiusMeters / 1000 // convert to KM | |
dist = dist / 6371; //Radius of earth approx | |
bearingDegrees = this.toRad(bearingDegrees); | |
var lat1 = this.toRad(LatLng.lat()), lon1 = this.toRad(LatLng.lng()); | |
var lat2 = Math.asin(Math.sin(lat1) * Math.cos(dist) + | |
Math.cos(lat1) * Math.sin(dist) * Math.cos(bearingDegrees)); | |
var lon2 = lon1 + Math.atan2(Math.sin(bearingDegrees) * Math.sin(dist) * | |
Math.cos(lat1), | |
Math.cos(dist) - Math.sin(lat1) * | |
Math.sin(lat2)); | |
if (isNaN(lat2) || isNaN(lon2)) return null; | |
return new google.maps.LatLng(this.toDeg(lat2), this.toDeg(lon2)); | |
} | |
function extendMapToFit(map, pos, radius){ | |
var center = new google.maps.LatLng(pos.lat, pos.lng); | |
var bounds = map.getBounds(); | |
bounds.extend(destinationPoint(center, 90, radius )); | |
bounds.extend(destinationPoint(center, -90, radius )); | |
bounds.extend(destinationPoint(center, 180, radius )); | |
bounds.extend(destinationPoint(center, 0, radius )); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment