最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to use google maps to pinpoint a location as a html form input? - Stack Overflow

programmeradmin0浏览0评论

Is it possible to integrate google maps api into a html form where a user can select a specific pin point location in the form of co-ordinates and submit them with your form?

I am using asp with Razor views, however I doubt that will effect the answer to this question in anyway.

I have had a look at and cant seem to find using the maps api as a form input. Unless maybe im' blind.

Is it possible to integrate google maps api into a html form where a user can select a specific pin point location in the form of co-ordinates and submit them with your form?

I am using asp with Razor views, however I doubt that will effect the answer to this question in anyway.

I have had a look at https://developers.google./maps/documentation/javascript/tutorial and cant seem to find using the maps api as a form input. Unless maybe im' blind.

Share Improve this question edited Aug 4, 2019 at 4:08 CommunityBot 11 silver badge asked Apr 20, 2015 at 18:27 ZapnologicaZapnologica 22.6k44 gold badges171 silver badges260 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 8

Add a draggable marker and store the lat/lng values in hidden inputs on dragend (event docs).

// Place a draggable marker on the map
var marker = new google.maps.Marker({
    position: myLatlng,
    map: map,
    draggable:true,
    title:"Drag me!"
});

//get marker position and store in hidden input
google.maps.event.addListener(marker, 'dragend', function (evt) {
    document.getElementById("latInput").value = evt.latLng.lat().toFixed(3);
    document.getElementById("lngInput").value = evt.latLng.lng().toFixed(3);
});

You can create an eventlistener initializing the marker first.

   marker = new google.maps.Marker({
      map: map,
      draggable: true,
      animation: google.maps.Animation.DROP,
      //position: new google.maps.LatLng(yourLat, yourLng),

  });

   google.maps.event.addListener(marker, 'dragend', function (event) {
        $("#yourinputlat").val(this.getPosition().lat().toFixed(6));
        $("#yourinputlng").val(this.getPosition().lng().toFixed(6));
    });

I've been using this to get the location with latitude and longitude from a google map and then insert it in an input to be sent with the POST

发布评论

评论列表(0)

  1. 暂无评论