Getting coordinates from search and drag pin options in Google Maps API? Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Getting address or location from Google Maps?Google Map with search box and drag-able PinGoogle Maps and Search for KML URLGoogle Map API Drag event..?How do you get the coordinates from a drag event in the Google Maps API V3?Google Maps Coordinates ProblemExtracting latitude/longitude from javascript and passing to html formGetting directions north/south/east/west with Google Maps API?Converting aeronautical information coordinates to Google Maps API coordinatesGetting geocodes of US highway EXITS using Google Maps API?

How can I fade player when goes inside or outside of the area?

Do I really need recursive chmod to restrict access to a folder?

Is above average number of years spent on PhD considered a red flag in future academia or industry positions?

Why one of virtual NICs called bond0?

Is 1 ppb equal to 1 μg/kg?

How widely used is the term Treppenwitz? Is it something that most Germans know?

Using et al. for a last / senior author rather than for a first author

The logistics of corpse disposal

G-Code for resetting to 100% speed

How to draw this diagram using TikZ package?

How do I mention the quality of my school without bragging

If Jon Snow became King of the Seven Kingdoms what would his regnal number be?

Why is black pepper both grey and black?

Java 8 stream max() function argument type Comparator vs Comparable

Are my PIs rude or am I just being too sensitive?

Disable hyphenation for an entire paragraph

Can Pao de Queijo, and similar foods, be kosher for Passover?

3 doors, three guards, one stone

When to stop saving and start investing?

Is there a concise way to say "all of the X, one of each"?

Is there a service that would inform me whenever a new direct route is scheduled from a given airport?

Storing hydrofluoric acid before the invention of plastics

Can inflation occur in a positive-sum game currency system such as the Stack Exchange reputation system?

Why does Python start at index 1 when iterating an array backwards?



Getting coordinates from search and drag pin options in Google Maps API?



Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Getting address or location from Google Maps?Google Map with search box and drag-able PinGoogle Maps and Search for KML URLGoogle Map API Drag event..?How do you get the coordinates from a drag event in the Google Maps API V3?Google Maps Coordinates ProblemExtracting latitude/longitude from javascript and passing to html formGetting directions north/south/east/west with Google Maps API?Converting aeronautical information coordinates to Google Maps API coordinatesGetting geocodes of US highway EXITS using Google Maps API?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








-1















I am trying to find out co-ordinates in html form input using search and drag-gable pin using Google API. Please help me to do this. I am Getting a Blank page in map div. I have API Key also.



 <!DOCTYPE html>
<html lang="nb">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://maps.google.com/maps/api/js?key=API_KEY&sensor=false"></script>
</head>
<body>

<form>
<input type="text" id="user_location" name="user_location" class="register-form__location-holder"> <a href="#" class="button button--small register-wizard__map-search-button">Search adr.</a>
<div style="width:100%;height:300px" id="register-form__map" class="register-form__map register-form__map--user"></div>
lat: <input name="user_latitude" value="" class="register-form__latitude-holder">
long: <input name="user_longitude" value="" class="register-form__longitude-holder">
</form>

<script>
$(document).ready(function(e)

// init map
function initMap(lat, long)

var center = new google.maps.LatLng(parseFloat(lat), long);
var mapOptions = center: center, zoom: 16, scrollwheel: false;
map = new google.maps.Map(document.getElementById("register-form__map"), mapOptions);
marker = new google.maps.Marker(position: new google.maps.LatLng(lat, long), draggable:true, map: map,title: 'Test');

google.maps.event.addListener(marker, 'dragend', function (event)
var lat = this.getPosition().lat();
var long = this.getPosition().lng();
initMap(lat, long);
$('.register-form__latitude-holder').val(lat);
$('.register-form__longitude-holder').val(long);
);


/**
* Geocode when user location input changes
*/
$('body').on('change', '.register-form__location-holder', function(e)
var address = $(this).val();
var geocoder = new google.maps.Geocoder();
if (geocoder)
geocoder.geocode( 'address': address , function (results, status)
if (status == google.maps.GeocoderStatus.OK)
console.log(results[0].geometry.location);
var lat = results[0].geometry.location.lat();
var long = results[0].geometry.location.lng();

console.log("lat="+lat);

initMap(lat, long);
$('.register-form__latitude-holder').val(lat);
$('.register-form__longitude-holder').val(long);

else
alert("Kunne ikke finne denne adressen, vennligst skriv en i nærheten og dra pin'en på kartet nærmest mulig riktig posisjon.");
$('.register-form__latitude-holder').focus().select();

);


);

var lat = $('.register-form__latitude-holder').val();
var long = $('.register-form__longitude-holder').val();
initMap(lat, long);


);

</script>


</body>
</html>









share|improve this question







New contributor




Tamil Selvan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


























    -1















    I am trying to find out co-ordinates in html form input using search and drag-gable pin using Google API. Please help me to do this. I am Getting a Blank page in map div. I have API Key also.



     <!DOCTYPE html>
    <html lang="nb">
    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
    <script src="http://maps.google.com/maps/api/js?key=API_KEY&sensor=false"></script>
    </head>
    <body>

    <form>
    <input type="text" id="user_location" name="user_location" class="register-form__location-holder"> <a href="#" class="button button--small register-wizard__map-search-button">Search adr.</a>
    <div style="width:100%;height:300px" id="register-form__map" class="register-form__map register-form__map--user"></div>
    lat: <input name="user_latitude" value="" class="register-form__latitude-holder">
    long: <input name="user_longitude" value="" class="register-form__longitude-holder">
    </form>

    <script>
    $(document).ready(function(e)

    // init map
    function initMap(lat, long)

    var center = new google.maps.LatLng(parseFloat(lat), long);
    var mapOptions = center: center, zoom: 16, scrollwheel: false;
    map = new google.maps.Map(document.getElementById("register-form__map"), mapOptions);
    marker = new google.maps.Marker(position: new google.maps.LatLng(lat, long), draggable:true, map: map,title: 'Test');

    google.maps.event.addListener(marker, 'dragend', function (event)
    var lat = this.getPosition().lat();
    var long = this.getPosition().lng();
    initMap(lat, long);
    $('.register-form__latitude-holder').val(lat);
    $('.register-form__longitude-holder').val(long);
    );


    /**
    * Geocode when user location input changes
    */
    $('body').on('change', '.register-form__location-holder', function(e)
    var address = $(this).val();
    var geocoder = new google.maps.Geocoder();
    if (geocoder)
    geocoder.geocode( 'address': address , function (results, status)
    if (status == google.maps.GeocoderStatus.OK)
    console.log(results[0].geometry.location);
    var lat = results[0].geometry.location.lat();
    var long = results[0].geometry.location.lng();

    console.log("lat="+lat);

    initMap(lat, long);
    $('.register-form__latitude-holder').val(lat);
    $('.register-form__longitude-holder').val(long);

    else
    alert("Kunne ikke finne denne adressen, vennligst skriv en i nærheten og dra pin'en på kartet nærmest mulig riktig posisjon.");
    $('.register-form__latitude-holder').focus().select();

    );


    );

    var lat = $('.register-form__latitude-holder').val();
    var long = $('.register-form__longitude-holder').val();
    initMap(lat, long);


    );

    </script>


    </body>
    </html>









    share|improve this question







    New contributor




    Tamil Selvan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      -1












      -1








      -1








      I am trying to find out co-ordinates in html form input using search and drag-gable pin using Google API. Please help me to do this. I am Getting a Blank page in map div. I have API Key also.



       <!DOCTYPE html>
      <html lang="nb">
      <head>
      <meta charset="UTF-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
      <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
      <script src="http://maps.google.com/maps/api/js?key=API_KEY&sensor=false"></script>
      </head>
      <body>

      <form>
      <input type="text" id="user_location" name="user_location" class="register-form__location-holder"> <a href="#" class="button button--small register-wizard__map-search-button">Search adr.</a>
      <div style="width:100%;height:300px" id="register-form__map" class="register-form__map register-form__map--user"></div>
      lat: <input name="user_latitude" value="" class="register-form__latitude-holder">
      long: <input name="user_longitude" value="" class="register-form__longitude-holder">
      </form>

      <script>
      $(document).ready(function(e)

      // init map
      function initMap(lat, long)

      var center = new google.maps.LatLng(parseFloat(lat), long);
      var mapOptions = center: center, zoom: 16, scrollwheel: false;
      map = new google.maps.Map(document.getElementById("register-form__map"), mapOptions);
      marker = new google.maps.Marker(position: new google.maps.LatLng(lat, long), draggable:true, map: map,title: 'Test');

      google.maps.event.addListener(marker, 'dragend', function (event)
      var lat = this.getPosition().lat();
      var long = this.getPosition().lng();
      initMap(lat, long);
      $('.register-form__latitude-holder').val(lat);
      $('.register-form__longitude-holder').val(long);
      );


      /**
      * Geocode when user location input changes
      */
      $('body').on('change', '.register-form__location-holder', function(e)
      var address = $(this).val();
      var geocoder = new google.maps.Geocoder();
      if (geocoder)
      geocoder.geocode( 'address': address , function (results, status)
      if (status == google.maps.GeocoderStatus.OK)
      console.log(results[0].geometry.location);
      var lat = results[0].geometry.location.lat();
      var long = results[0].geometry.location.lng();

      console.log("lat="+lat);

      initMap(lat, long);
      $('.register-form__latitude-holder').val(lat);
      $('.register-form__longitude-holder').val(long);

      else
      alert("Kunne ikke finne denne adressen, vennligst skriv en i nærheten og dra pin'en på kartet nærmest mulig riktig posisjon.");
      $('.register-form__latitude-holder').focus().select();

      );


      );

      var lat = $('.register-form__latitude-holder').val();
      var long = $('.register-form__longitude-holder').val();
      initMap(lat, long);


      );

      </script>


      </body>
      </html>









      share|improve this question







      New contributor




      Tamil Selvan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I am trying to find out co-ordinates in html form input using search and drag-gable pin using Google API. Please help me to do this. I am Getting a Blank page in map div. I have API Key also.



       <!DOCTYPE html>
      <html lang="nb">
      <head>
      <meta charset="UTF-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
      <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
      <script src="http://maps.google.com/maps/api/js?key=API_KEY&sensor=false"></script>
      </head>
      <body>

      <form>
      <input type="text" id="user_location" name="user_location" class="register-form__location-holder"> <a href="#" class="button button--small register-wizard__map-search-button">Search adr.</a>
      <div style="width:100%;height:300px" id="register-form__map" class="register-form__map register-form__map--user"></div>
      lat: <input name="user_latitude" value="" class="register-form__latitude-holder">
      long: <input name="user_longitude" value="" class="register-form__longitude-holder">
      </form>

      <script>
      $(document).ready(function(e)

      // init map
      function initMap(lat, long)

      var center = new google.maps.LatLng(parseFloat(lat), long);
      var mapOptions = center: center, zoom: 16, scrollwheel: false;
      map = new google.maps.Map(document.getElementById("register-form__map"), mapOptions);
      marker = new google.maps.Marker(position: new google.maps.LatLng(lat, long), draggable:true, map: map,title: 'Test');

      google.maps.event.addListener(marker, 'dragend', function (event)
      var lat = this.getPosition().lat();
      var long = this.getPosition().lng();
      initMap(lat, long);
      $('.register-form__latitude-holder').val(lat);
      $('.register-form__longitude-holder').val(long);
      );


      /**
      * Geocode when user location input changes
      */
      $('body').on('change', '.register-form__location-holder', function(e)
      var address = $(this).val();
      var geocoder = new google.maps.Geocoder();
      if (geocoder)
      geocoder.geocode( 'address': address , function (results, status)
      if (status == google.maps.GeocoderStatus.OK)
      console.log(results[0].geometry.location);
      var lat = results[0].geometry.location.lat();
      var long = results[0].geometry.location.lng();

      console.log("lat="+lat);

      initMap(lat, long);
      $('.register-form__latitude-holder').val(lat);
      $('.register-form__longitude-holder').val(long);

      else
      alert("Kunne ikke finne denne adressen, vennligst skriv en i nærheten og dra pin'en på kartet nærmest mulig riktig posisjon.");
      $('.register-form__latitude-holder').focus().select();

      );


      );

      var lat = $('.register-form__latitude-holder').val();
      var long = $('.register-form__longitude-holder').val();
      initMap(lat, long);


      );

      </script>


      </body>
      </html>






      google-maps search drag-and-drop






      share|improve this question







      New contributor




      Tamil Selvan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Tamil Selvan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Tamil Selvan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked Apr 9 at 6:56









      Tamil SelvanTamil Selvan

      1




      1




      New contributor




      Tamil Selvan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Tamil Selvan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Tamil Selvan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          0






          active

          oldest

          votes












          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "79"
          ;
          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: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          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
          );



          );






          Tamil Selvan is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f318197%2fgetting-coordinates-from-search-and-drag-pin-options-in-google-maps-api%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








          Tamil Selvan is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          Tamil Selvan is a new contributor. Be nice, and check out our Code of Conduct.












          Tamil Selvan is a new contributor. Be nice, and check out our Code of Conduct.











          Tamil Selvan is a new contributor. Be nice, and check out our Code of Conduct.














          Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


          • 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%2fgis.stackexchange.com%2fquestions%2f318197%2fgetting-coordinates-from-search-and-drag-pin-options-in-google-maps-api%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







          Popular posts from this blog

          រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

          QGIS export composer to PDF scale the map [closed] Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Print Composer QGIS 2.6, how to export image?QGIS 2.8.1 print composer won't export all OpenCycleMap base layer tilesSave Print/Map QGIS composer view as PNG/PDF using Python (without changing anything in visible layout)?Export QGIS Print Composer PDF with searchable text labelsQGIS Print Composer does not change from landscape to portrait orientation?How can I avoid map size and scale changes in print composer?Fuzzy PDF export in QGIS running on macSierra OSExport the legend into its 100% size using Print ComposerScale-dependent rendering in QGIS PDF output

          PDF-ში გადმოწერა სანავიგაციო მენიუproject page