On click take location data and display on google map












0















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










share|improve this question

























  • 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
















0















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










share|improve this question

























  • 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














0












0








0








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










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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



















  • 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












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
});


}
});














draft saved

draft discarded


















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
















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini