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

Re-submission of rejected manuscript without informing co-authors

Is there a familial term for apples and pears?

Why is my log file so massive? 22gb. I am running log backups

Landlord wants to switch my lease to a "Land contract" to "get back at the city"

Information to fellow intern about hiring?

extract characters between two commas?

Cisco ASA 5585X Internal-Data0/1 interface errors

Does it makes sense to buy a new cycle to learn riding?

Why is the design of haulage companies so “special”?

Calculate Levenshtein distance between two strings in Python

Should the British be getting ready for a no-deal Brexit?

How can I add custom success page

Can I legally use front facing blue light in the UK?

Finding files for which a command fails

What do you call something that goes against the spirit of the law, but is legal when interpreting the law to the letter?

Is this food a bread or a loaf?

Extreme, but not acceptable situation and I can't start the work tomorrow morning

Copycat chess is back

A poker game description that does not feel gimmicky

Is a vector space a subspace of itself?

Is it wise to hold on to stock that has plummeted and then stabilized?

Creating a loop after a break using Markov Chain in Tikz

Is ipsum/ipsa/ipse a third person pronoun, or can it serve other functions?

If a centaur druid Wild Shapes into a Giant Elk, do their Charge features stack?



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







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







0















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.



<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<link href="http://code.google.com/apis/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css" />
<script src="http://maps.google.com/maps/api/js?key=API_KEY&amp;v=3.5&amp;sensor=false"></script>
<script type="text/javascript">
var geocoder;
var map;

var geocoder = new google.maps.Geocoder();

function initialize() {
var latLng = new google.maps.LatLng(57.0442, 9.9116);
var map = new google.maps.Map(document.getElementById('mapCanvas'), {
zoom: 8,
center: latLng,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var marker = new google.maps.Marker({
position: latLng,
title: 'Point A',
map: map,
draggable: true
});

function codeAddress() {
var address = document.getElementById("address123").value;
geocoder.geocode( { 'address123': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
map.setCenter(results[0].geometry.location);
var marker = new google.maps.Marker({
map: map,
draggable: true,
position: results[0].geometry.location

});
} else {
alert("Geocode was not successful for the following reason: " + status);
}

});
}


function geocodePosition(pos) {
geocoder.geocode({
latLng: pos
}, function(responses) {
if (responses && responses.length > 0) {
updateMarkerAddress(responses[0].formatted_address);
} else {
updateMarkerAddress('Cannot determine address at this location.');
}
});
}

function updateMarkerStatus(str) {
document.getElementById('markerStatus').innerHTML = str;
}

function updateMarkerPosition(latLng) {
document.getElementById('info').innerHTML = [
latLng.lat(),
latLng.lng()
].join(', ');
}

function updateMarkerAddress(str) {
document.getElementById('address').innerHTML = str;
}




// Update current position info.
updateMarkerPosition(latLng);
geocodePosition(latLng);

// Add dragging event listeners.
google.maps.event.addListener(marker, 'dragstart', function() {
updateMarkerAddress('Dragging...');
});

google.maps.event.addListener(marker, 'drag', function() {
updateMarkerStatus('Dragging...');
updateMarkerPosition(marker.getPosition());
});

google.maps.event.addListener(marker, 'dragend', function() {
updateMarkerStatus('Drag ended');
geocodePosition(marker.getPosition());
});
}

// Onload handler to fire off the app.
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body onload="initialize()">
<style>
#mapCanvas {
width: 500px;
height: 400px;
float: left;
}
#infoPanel {
float: left;
margin-left: 10px;
}
#infoPanel div {
margin-bottom: 5px;
}
</style>
<div id="controls">
<input id="address123" type="textbox" value="Sydney, NSW">

<input type="button" value="Geocode" onclick="codeAddress()">
</div>


<div id="mapCanvas"></div>


<div id="infoPanel">
<b>Marker status:</b>
<div id="markerStatus"><i>Click and drag the marker.</i></div>
<b>Current position:</b>
<div id="info"></div>
<b>Closest matching address:</b>
<div id="address"></div>
</div>
</body>
</html>








share







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.



























    0















    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.



    <html>
    <head>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
    <link href="http://code.google.com/apis/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css" />
    <script src="http://maps.google.com/maps/api/js?key=API_KEY&amp;v=3.5&amp;sensor=false"></script>
    <script type="text/javascript">
    var geocoder;
    var map;

    var geocoder = new google.maps.Geocoder();

    function initialize() {
    var latLng = new google.maps.LatLng(57.0442, 9.9116);
    var map = new google.maps.Map(document.getElementById('mapCanvas'), {
    zoom: 8,
    center: latLng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
    });
    var marker = new google.maps.Marker({
    position: latLng,
    title: 'Point A',
    map: map,
    draggable: true
    });

    function codeAddress() {
    var address = document.getElementById("address123").value;
    geocoder.geocode( { 'address123': address}, function(results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
    map.setCenter(results[0].geometry.location);
    var marker = new google.maps.Marker({
    map: map,
    draggable: true,
    position: results[0].geometry.location

    });
    } else {
    alert("Geocode was not successful for the following reason: " + status);
    }

    });
    }


    function geocodePosition(pos) {
    geocoder.geocode({
    latLng: pos
    }, function(responses) {
    if (responses && responses.length > 0) {
    updateMarkerAddress(responses[0].formatted_address);
    } else {
    updateMarkerAddress('Cannot determine address at this location.');
    }
    });
    }

    function updateMarkerStatus(str) {
    document.getElementById('markerStatus').innerHTML = str;
    }

    function updateMarkerPosition(latLng) {
    document.getElementById('info').innerHTML = [
    latLng.lat(),
    latLng.lng()
    ].join(', ');
    }

    function updateMarkerAddress(str) {
    document.getElementById('address').innerHTML = str;
    }




    // Update current position info.
    updateMarkerPosition(latLng);
    geocodePosition(latLng);

    // Add dragging event listeners.
    google.maps.event.addListener(marker, 'dragstart', function() {
    updateMarkerAddress('Dragging...');
    });

    google.maps.event.addListener(marker, 'drag', function() {
    updateMarkerStatus('Dragging...');
    updateMarkerPosition(marker.getPosition());
    });

    google.maps.event.addListener(marker, 'dragend', function() {
    updateMarkerStatus('Drag ended');
    geocodePosition(marker.getPosition());
    });
    }

    // Onload handler to fire off the app.
    google.maps.event.addDomListener(window, 'load', initialize);
    </script>
    </head>
    <body onload="initialize()">
    <style>
    #mapCanvas {
    width: 500px;
    height: 400px;
    float: left;
    }
    #infoPanel {
    float: left;
    margin-left: 10px;
    }
    #infoPanel div {
    margin-bottom: 5px;
    }
    </style>
    <div id="controls">
    <input id="address123" type="textbox" value="Sydney, NSW">

    <input type="button" value="Geocode" onclick="codeAddress()">
    </div>


    <div id="mapCanvas"></div>


    <div id="infoPanel">
    <b>Marker status:</b>
    <div id="markerStatus"><i>Click and drag the marker.</i></div>
    <b>Current position:</b>
    <div id="info"></div>
    <b>Closest matching address:</b>
    <div id="address"></div>
    </div>
    </body>
    </html>








    share







    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.























      0












      0








      0








      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.



      <html>
      <head>
      <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
      <link href="http://code.google.com/apis/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css" />
      <script src="http://maps.google.com/maps/api/js?key=API_KEY&amp;v=3.5&amp;sensor=false"></script>
      <script type="text/javascript">
      var geocoder;
      var map;

      var geocoder = new google.maps.Geocoder();

      function initialize() {
      var latLng = new google.maps.LatLng(57.0442, 9.9116);
      var map = new google.maps.Map(document.getElementById('mapCanvas'), {
      zoom: 8,
      center: latLng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
      });
      var marker = new google.maps.Marker({
      position: latLng,
      title: 'Point A',
      map: map,
      draggable: true
      });

      function codeAddress() {
      var address = document.getElementById("address123").value;
      geocoder.geocode( { 'address123': address}, function(results, status) {
      if (status == google.maps.GeocoderStatus.OK) {
      map.setCenter(results[0].geometry.location);
      var marker = new google.maps.Marker({
      map: map,
      draggable: true,
      position: results[0].geometry.location

      });
      } else {
      alert("Geocode was not successful for the following reason: " + status);
      }

      });
      }


      function geocodePosition(pos) {
      geocoder.geocode({
      latLng: pos
      }, function(responses) {
      if (responses && responses.length > 0) {
      updateMarkerAddress(responses[0].formatted_address);
      } else {
      updateMarkerAddress('Cannot determine address at this location.');
      }
      });
      }

      function updateMarkerStatus(str) {
      document.getElementById('markerStatus').innerHTML = str;
      }

      function updateMarkerPosition(latLng) {
      document.getElementById('info').innerHTML = [
      latLng.lat(),
      latLng.lng()
      ].join(', ');
      }

      function updateMarkerAddress(str) {
      document.getElementById('address').innerHTML = str;
      }




      // Update current position info.
      updateMarkerPosition(latLng);
      geocodePosition(latLng);

      // Add dragging event listeners.
      google.maps.event.addListener(marker, 'dragstart', function() {
      updateMarkerAddress('Dragging...');
      });

      google.maps.event.addListener(marker, 'drag', function() {
      updateMarkerStatus('Dragging...');
      updateMarkerPosition(marker.getPosition());
      });

      google.maps.event.addListener(marker, 'dragend', function() {
      updateMarkerStatus('Drag ended');
      geocodePosition(marker.getPosition());
      });
      }

      // Onload handler to fire off the app.
      google.maps.event.addDomListener(window, 'load', initialize);
      </script>
      </head>
      <body onload="initialize()">
      <style>
      #mapCanvas {
      width: 500px;
      height: 400px;
      float: left;
      }
      #infoPanel {
      float: left;
      margin-left: 10px;
      }
      #infoPanel div {
      margin-bottom: 5px;
      }
      </style>
      <div id="controls">
      <input id="address123" type="textbox" value="Sydney, NSW">

      <input type="button" value="Geocode" onclick="codeAddress()">
      </div>


      <div id="mapCanvas"></div>


      <div id="infoPanel">
      <b>Marker status:</b>
      <div id="markerStatus"><i>Click and drag the marker.</i></div>
      <b>Current position:</b>
      <div id="info"></div>
      <b>Closest matching address:</b>
      <div id="address"></div>
      </div>
      </body>
      </html>








      share







      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.



      <html>
      <head>
      <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
      <link href="http://code.google.com/apis/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css" />
      <script src="http://maps.google.com/maps/api/js?key=API_KEY&amp;v=3.5&amp;sensor=false"></script>
      <script type="text/javascript">
      var geocoder;
      var map;

      var geocoder = new google.maps.Geocoder();

      function initialize() {
      var latLng = new google.maps.LatLng(57.0442, 9.9116);
      var map = new google.maps.Map(document.getElementById('mapCanvas'), {
      zoom: 8,
      center: latLng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
      });
      var marker = new google.maps.Marker({
      position: latLng,
      title: 'Point A',
      map: map,
      draggable: true
      });

      function codeAddress() {
      var address = document.getElementById("address123").value;
      geocoder.geocode( { 'address123': address}, function(results, status) {
      if (status == google.maps.GeocoderStatus.OK) {
      map.setCenter(results[0].geometry.location);
      var marker = new google.maps.Marker({
      map: map,
      draggable: true,
      position: results[0].geometry.location

      });
      } else {
      alert("Geocode was not successful for the following reason: " + status);
      }

      });
      }


      function geocodePosition(pos) {
      geocoder.geocode({
      latLng: pos
      }, function(responses) {
      if (responses && responses.length > 0) {
      updateMarkerAddress(responses[0].formatted_address);
      } else {
      updateMarkerAddress('Cannot determine address at this location.');
      }
      });
      }

      function updateMarkerStatus(str) {
      document.getElementById('markerStatus').innerHTML = str;
      }

      function updateMarkerPosition(latLng) {
      document.getElementById('info').innerHTML = [
      latLng.lat(),
      latLng.lng()
      ].join(', ');
      }

      function updateMarkerAddress(str) {
      document.getElementById('address').innerHTML = str;
      }




      // Update current position info.
      updateMarkerPosition(latLng);
      geocodePosition(latLng);

      // Add dragging event listeners.
      google.maps.event.addListener(marker, 'dragstart', function() {
      updateMarkerAddress('Dragging...');
      });

      google.maps.event.addListener(marker, 'drag', function() {
      updateMarkerStatus('Dragging...');
      updateMarkerPosition(marker.getPosition());
      });

      google.maps.event.addListener(marker, 'dragend', function() {
      updateMarkerStatus('Drag ended');
      geocodePosition(marker.getPosition());
      });
      }

      // Onload handler to fire off the app.
      google.maps.event.addDomListener(window, 'load', initialize);
      </script>
      </head>
      <body onload="initialize()">
      <style>
      #mapCanvas {
      width: 500px;
      height: 400px;
      float: left;
      }
      #infoPanel {
      float: left;
      margin-left: 10px;
      }
      #infoPanel div {
      margin-bottom: 5px;
      }
      </style>
      <div id="controls">
      <input id="address123" type="textbox" value="Sydney, NSW">

      <input type="button" value="Geocode" onclick="codeAddress()">
      </div>


      <div id="mapCanvas"></div>


      <div id="infoPanel">
      <b>Marker status:</b>
      <div id="markerStatus"><i>Click and drag the marker.</i></div>
      <b>Current position:</b>
      <div id="info"></div>
      <b>Closest matching address:</b>
      <div id="address"></div>
      </div>
      </body>
      </html>






      google-maps search drag-and-drop





      share







      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







      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



      share






      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 2 mins ago









      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

          Щит и меч (фильм) Содержание Названия серий | Сюжет |...

          is 'sed' thread safeWhat should someone know about using Python scripts in the shell?Nexenta bash script uses...

          Meter-Bus Содержание Параметры шины | Стандартизация |...