On click take location data and display on google map
up vote
0
down vote
favorite
I have a list of fake addresses which is populated through a data.json file. Each of these addresses has a lat and long position.
How would I go about writing an on click function to read the lat and long position of that address?
Currently, when a user enters their postcode the first address lat and long position is displayed in the google map.
jquery
$.getJSON('https://api.myjson.com/bins/m0a3m', function(data) {
//console.log('json')
$.each(data, function(key, value) {
if (value.address.postcode.search(expression) != -1) {
//console.log(value)
//COURIER ADDRESS DETAILS
$('#result').append('<li data-contentid="' + key + '"
class="list-group-item courier">
<div class="c-image mr-3">
<img src="../images/hermes-logo.jpg" class="w-100">
</div><div class="result-address">
<div class="c-name font-weight-bold">
' + value.name + '
</div>
<div class="address">
' + value.address.name + ',
' + value.address.line1 + ',
' + value.address.town + ',
' + value.address.county + ',
' + value.address.postcode + '
</div>
</div>
</li>');
var mapProp = {
center: new google.maps.LatLng(
value.location.latitude,
value.location.longitude),
zoom: 5,
};
var map = new google.maps.Map(
document.getElementById("googleMap"),
mapProp);
var myLatlng = new google.maps.LatLng(
value.location.latitude,
value.location.longitude);
var marker = new google.maps.Marker({
position: myLatlng,
title:"Hello World!"
});
marker.setMap(map);
}
});
});
any ideas or suggestions would be great.
Thanks
jquery json
add a comment |
up vote
0
down vote
favorite
I have a list of fake addresses which is populated through a data.json file. Each of these addresses has a lat and long position.
How would I go about writing an on click function to read the lat and long position of that address?
Currently, when a user enters their postcode the first address lat and long position is displayed in the google map.
jquery
$.getJSON('https://api.myjson.com/bins/m0a3m', function(data) {
//console.log('json')
$.each(data, function(key, value) {
if (value.address.postcode.search(expression) != -1) {
//console.log(value)
//COURIER ADDRESS DETAILS
$('#result').append('<li data-contentid="' + key + '"
class="list-group-item courier">
<div class="c-image mr-3">
<img src="../images/hermes-logo.jpg" class="w-100">
</div><div class="result-address">
<div class="c-name font-weight-bold">
' + value.name + '
</div>
<div class="address">
' + value.address.name + ',
' + value.address.line1 + ',
' + value.address.town + ',
' + value.address.county + ',
' + value.address.postcode + '
</div>
</div>
</li>');
var mapProp = {
center: new google.maps.LatLng(
value.location.latitude,
value.location.longitude),
zoom: 5,
};
var map = new google.maps.Map(
document.getElementById("googleMap"),
mapProp);
var myLatlng = new google.maps.LatLng(
value.location.latitude,
value.location.longitude);
var marker = new google.maps.Marker({
position: myLatlng,
title:"Hello World!"
});
marker.setMap(map);
}
});
});
any ideas or suggestions would be great.
Thanks
jquery json
Note that creating new map inside each iteration of loop doesn't make sense
– charlietfl
Nov 18 at 20:07
@charlietfl Okay, do you know how I should go about it? thanks
– Danzel91
Nov 18 at 20:31
Create the map once either on page load or before the loop
– charlietfl
Nov 18 at 20:32
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a list of fake addresses which is populated through a data.json file. Each of these addresses has a lat and long position.
How would I go about writing an on click function to read the lat and long position of that address?
Currently, when a user enters their postcode the first address lat and long position is displayed in the google map.
jquery
$.getJSON('https://api.myjson.com/bins/m0a3m', function(data) {
//console.log('json')
$.each(data, function(key, value) {
if (value.address.postcode.search(expression) != -1) {
//console.log(value)
//COURIER ADDRESS DETAILS
$('#result').append('<li data-contentid="' + key + '"
class="list-group-item courier">
<div class="c-image mr-3">
<img src="../images/hermes-logo.jpg" class="w-100">
</div><div class="result-address">
<div class="c-name font-weight-bold">
' + value.name + '
</div>
<div class="address">
' + value.address.name + ',
' + value.address.line1 + ',
' + value.address.town + ',
' + value.address.county + ',
' + value.address.postcode + '
</div>
</div>
</li>');
var mapProp = {
center: new google.maps.LatLng(
value.location.latitude,
value.location.longitude),
zoom: 5,
};
var map = new google.maps.Map(
document.getElementById("googleMap"),
mapProp);
var myLatlng = new google.maps.LatLng(
value.location.latitude,
value.location.longitude);
var marker = new google.maps.Marker({
position: myLatlng,
title:"Hello World!"
});
marker.setMap(map);
}
});
});
any ideas or suggestions would be great.
Thanks
jquery json
I have a list of fake addresses which is populated through a data.json file. Each of these addresses has a lat and long position.
How would I go about writing an on click function to read the lat and long position of that address?
Currently, when a user enters their postcode the first address lat and long position is displayed in the google map.
jquery
$.getJSON('https://api.myjson.com/bins/m0a3m', function(data) {
//console.log('json')
$.each(data, function(key, value) {
if (value.address.postcode.search(expression) != -1) {
//console.log(value)
//COURIER ADDRESS DETAILS
$('#result').append('<li data-contentid="' + key + '"
class="list-group-item courier">
<div class="c-image mr-3">
<img src="../images/hermes-logo.jpg" class="w-100">
</div><div class="result-address">
<div class="c-name font-weight-bold">
' + value.name + '
</div>
<div class="address">
' + value.address.name + ',
' + value.address.line1 + ',
' + value.address.town + ',
' + value.address.county + ',
' + value.address.postcode + '
</div>
</div>
</li>');
var mapProp = {
center: new google.maps.LatLng(
value.location.latitude,
value.location.longitude),
zoom: 5,
};
var map = new google.maps.Map(
document.getElementById("googleMap"),
mapProp);
var myLatlng = new google.maps.LatLng(
value.location.latitude,
value.location.longitude);
var marker = new google.maps.Marker({
position: myLatlng,
title:"Hello World!"
});
marker.setMap(map);
}
});
});
any ideas or suggestions would be great.
Thanks
jquery json
jquery json
edited Nov 18 at 20:13
Ali
332213
332213
asked Nov 18 at 19:54
Danzel91
538
538
Note that creating new map inside each iteration of loop doesn't make sense
– charlietfl
Nov 18 at 20:07
@charlietfl Okay, do you know how I should go about it? thanks
– Danzel91
Nov 18 at 20:31
Create the map once either on page load or before the loop
– charlietfl
Nov 18 at 20:32
add a comment |
Note that creating new map inside each iteration of loop doesn't make sense
– charlietfl
Nov 18 at 20:07
@charlietfl Okay, do you know how I should go about it? thanks
– Danzel91
Nov 18 at 20:31
Create the map once either on page load or before the loop
– charlietfl
Nov 18 at 20:32
Note that creating new map inside each iteration of loop doesn't make sense
– charlietfl
Nov 18 at 20:07
Note that creating new map inside each iteration of loop doesn't make sense
– charlietfl
Nov 18 at 20:07
@charlietfl Okay, do you know how I should go about it? thanks
– Danzel91
Nov 18 at 20:31
@charlietfl Okay, do you know how I should go about it? thanks
– Danzel91
Nov 18 at 20:31
Create the map once either on page load or before the loop
– charlietfl
Nov 18 at 20:32
Create the map once either on page load or before the loop
– charlietfl
Nov 18 at 20:32
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53364855%2fon-click-take-location-data-and-display-on-google-map%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Note that creating new map inside each iteration of loop doesn't make sense
– charlietfl
Nov 18 at 20:07
@charlietfl Okay, do you know how I should go about it? thanks
– Danzel91
Nov 18 at 20:31
Create the map once either on page load or before the loop
– charlietfl
Nov 18 at 20:32