Click on map and get Longitude -Latitude.

Map

Click on map and get Longitude -Latitude.

How To Get Longitude – Latitude When Clicked On Map?


<div id="MyMap" style="width:100%;height:500px;"></div>
<script>
function myMap() {
  var mapCanvas = document.getElementById("MyMap");
  var myCenter=new google.maps.LatLng(51.508742,-0.120850);
  var mapOptions = {center: myCenter, zoom: 5};
  var map = new google.maps.Map(mapCanvas, mapOptions);
  google.maps.event.addListener(map,'click', function(event) {
    LocationMarker(map, event.latLng);
  });
}
function LocationMarker(map, location) {
  var marker = new google.maps.Marker({
    position: location,
    map: map
  });
  var infowindow = new google.maps.InfoWindow({
    content: 'Latitude: ' + location.lat() + '<br>Longitude: ' + location.lng()
  });
  infowindow.open(map,marker);
}
</script>

<script src="https://maps.googleapis.com/maps/api/js?key=YourKey&callback=myMap"></script>
//Get API key from Google.
//Read more at: https://developers.google.com/maps/documentation/javascript/get-api-key

Shiv kumawat

Executive Director & CEO

"Shiv kumawat is the Executive Director and CEO of Eoxys It Solution LLP and the strategic mind behind the company"s growth. His expertise in operational efficiency and team leadership empowers his colleagues to excel and innovate.”

Latest Posts

AI in Real Estate Apps 2026 Smart Property Matching, Dynamic Pricing & Virtual Tours

  AI in Real Estate Apps 2026 Smart PropertyMatching, Dynamic Pricing & Virtual Tours Real Estate Enters the AI Agent…

Shafeeq Khan
January 16, 2026

AI in Doctor Appointment & Telehealth Apps 2026 Smart Triage, Scheduling & Virtual Care

  AI in Doctor Appointment & Telehealth Apps 2026 Smart Triage, Scheduling & Virtual Care Healthcare Access Meets AI Intelligence…

Shafeeq Khan
January 15, 2026

AI in Salon & Beauty Booking Apps 2026 From Schedules to Fully Smart Experiences

  AI in Salon & Beauty Booking Apps 2026 From Schedules to Fully Smart Experiences AI is turning salon and…

Shafeeq Khan
January 14, 2026
, ,

Leave a Reply

Your email address will not be published. Required fields are marked *