On click take location data and display on google map
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 |
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 '18 at 20:07
@charlietfl Okay, do you know how I should go about it? thanks
– Danzel91
Nov 18 '18 at 20:31
Create the map once either on page load or before the loop
– charlietfl
Nov 18 '18 at 20:32
add a comment |
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 '18 at 20:13
Ali
355314
355314
asked Nov 18 '18 at 19:54
Danzel91Danzel91
538
538
Note that creating new map inside each iteration of loop doesn't make sense
– charlietfl
Nov 18 '18 at 20:07
@charlietfl Okay, do you know how I should go about it? thanks
– Danzel91
Nov 18 '18 at 20:31
Create the map once either on page load or before the loop
– charlietfl
Nov 18 '18 at 20:32
add a comment |
Note that creating new map inside each iteration of loop doesn't make sense
– charlietfl
Nov 18 '18 at 20:07
@charlietfl Okay, do you know how I should go about it? thanks
– Danzel91
Nov 18 '18 at 20:31
Create the map once either on page load or before the loop
– charlietfl
Nov 18 '18 at 20:32
Note that creating new map inside each iteration of loop doesn't make sense
– charlietfl
Nov 18 '18 at 20:07
Note that creating new map inside each iteration of loop doesn't make sense
– charlietfl
Nov 18 '18 at 20:07
@charlietfl Okay, do you know how I should go about it? thanks
– Danzel91
Nov 18 '18 at 20:31
@charlietfl Okay, do you know how I should go about it? thanks
– Danzel91
Nov 18 '18 at 20:31
Create the map once either on page load or before the loop
– charlietfl
Nov 18 '18 at 20:32
Create the map once either on page load or before the loop
– charlietfl
Nov 18 '18 at 20:32
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
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 '18 at 20:07
@charlietfl Okay, do you know how I should go about it? thanks
– Danzel91
Nov 18 '18 at 20:31
Create the map once either on page load or before the loop
– charlietfl
Nov 18 '18 at 20:32