Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
html, body, #map-canvas {
margin: 0;
padding: 0;
height: 100%;
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
var map;
function initialize() {
var mapOptions = {
zoom: 8,
center: new google.maps.LatLng(-34.397, 150.644),
mapTypeId: google.maps.MapTypeId.ROADMAP
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
var polygonCoords = [
new google.maps.LatLng(25.774252, -80.190262),
new google.maps.LatLng(18.466465, -66.118292),
new google.maps.LatLng(32.321384, -64.757370),
new google.maps.LatLng(25.774252, -80.190262)
var north = new google.maps.LatLng(), west = new google.maps.LatLng(), east = new google.maps.LatLng(), south = new google.maps.LatLng();
north = polygonCoords[0];
west = polygonCoords[0];
east = polygonCoords[0];
south = polygonCoords[0];
for (i = 1; i < polygonCoords.length; i++) {
if (north.lat < polygonCoords[i].lat) {
north = polygonCoords[i];
if (south.lat > polygonCoords[i].lat) {
south = polygonCoords[i];
if (west.lng > polygonCoords[i].lng) {
west = polygonCoords[i];
if (east.lng < polygonCoords[i].lng) {
east = polygonCoords[i];
var center = new google.maps.LatLng(0,0);
center.lat = (north.lat + south.lat) / 2;
center.lng = (west.lng + east.lng) / 2;
var num = (north.lat + south.lat) / 2;
console.log(num);
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<div id="map-canvas"></div>
</body>
</html>
Why does num's result is NaN. How do I use lat, lng at number?
Possible duplication
here
, I am trying to use the first solution since the second solution does not work for me. Now I get stuck in this problem.
Thank you in advance.
A
google.maps.LatLng object
doesn't have a documented lat property (or a lng property). It has a .lat() method which returns its latitude and a .lng() method which returns its longitude.
var num = (north.lat() + south.lat()) / 2;
code snippet:
var map;
function initialize() {
var mapOptions = {
zoom: 5,
center: new google.maps.LatLng(-34.397, 150.644),
mapTypeId: google.maps.MapTypeId.ROADMAP
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
var polygonCoords = [
new google.maps.LatLng(25.774252, -80.190262),
new google.maps.LatLng(18.466465, -66.118292),
new google.maps.LatLng(32.321384, -64.757370),
new google.maps.LatLng(25.774252, -80.190262)
var north = new google.maps.LatLng(),
west = new google.maps.LatLng(),
east = new google.maps.LatLng(),
south = new google.maps.LatLng();
north = polygonCoords[0];
west = polygonCoords[0];
east = polygonCoords[0];
south = polygonCoords[0];
for (i = 1; i < polygonCoords.length; i++) {
if (north.lat() < polygonCoords[i].lat()) {
north = polygonCoords[i];
if (south.lat() > polygonCoords[i].lat()) {
south = polygonCoords[i];
if (west.lng() > polygonCoords[i].lng()) {
west = polygonCoords[i];
if (east.lng() < polygonCoords[i].lng()) {
east = polygonCoords[i];
var center = {};
center.lat = (north.lat() + south.lat()) / 2;
center.lng = (west.lng() + east.lng()) / 2;
var num = (north.lat() + south.lat()) / 2;
console.log(num);
var polygon = new google.maps.Polygon({
path: polygonCoords,
map: map
map.setCenter(center);
google.maps.event.addDomListener(window, 'load', initialize);
html,
body,
#map-canvas {
margin: 0;
padding: 0;
height: 100%;
<script src="https://maps.googleapis.com/maps/api/js?libraries=geometry"></script>
<div id="map-canvas"></div>
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.