Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7856419
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T20:42:19+00:00 2026-06-02T20:42:19+00:00

I have a google map script that works, but I can’t figure out how

  • 0

I have a google map script that works, but I can’t figure out how to add it to my asp.net content page. What is the proper way to add the script to the page?

see code:

 <%@ Page Title="Our Location" Language="VB"     MasterPageFile="~/MasterPages/Frontend.master" AutoEventWireup="false" CodeFile="Location.aspx.vb" Inherits="About_Location" %>

<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> 

<script type="text/javascript"   
  src="http://maps.google.com/maps/api/js?sensor=false"> 
</script> 

<style type="text/css">  
html { height: 100% }   
body { height: 100%; margin: 0px; padding: 0px }  
##map{ height: 100% } 
</style> 

</asp:Content>


<asp:Content ID="Content2" ContentPlaceHolderID="cpMainContent" Runat="Server"    OnLoad="codeAddress()">

<script type= "text/javascript">

var geocoder;
var map;
var marker;

function codeAddress() {
    alert("hello")


    //initializes the map

    //create geocoder
    geocoder = new google.maps.Geocoder();
    //set options for the map being created
    var myOptions = {
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    //create map instance and pass it the myOptions object literal
    map = new google.maps.Map(document.getElementById("map"), myOptions);

    //geocode to get the lat and lng points of the given address
    geocoder.geocode({ 'address': 'New York, New York'}, function (results, status) {
        if (status == google.maps.GeocoderStatus.OK) {
            //if geocoder finds location
            //center the map on the latlng points of the given address
            map.setCenter(results[0].geometry.location);
            map.setOptions({ zoom: 18 });
            //create marker and place it on the address
            marker = new google.maps.Marker({
                map: map,
                position: results[0].geometry.location,
                title: 'New York, New York'
            });
        }
        else {
            //if geocoder cannot find location, alert user
            alert("Could not find location");
        }
    });




}





</script>

<div id="map" style="width:700px; height:400px;"></div> 

</asp:Content>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T20:42:21+00:00Added an answer on June 2, 2026 at 8:42 pm

    Put your script in separate js file, declare it like you did with Google maps script. Then you have to call it, maybe send this “#map” div id as parameter to that script, and not hard code it in javascript.

    in this case you want to do that on page load with script manager :

    ScriptManager.RegisterStartupScript(this, this.GetType(), "ShowGoogleMap", "codeAddress('map');", true);
    

    btw. for google maps you can use Google Maps server control, it’s much easier to use managing maps from server side:

    http://googlemap.codeplex.com/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a google map that takes and put coordinates from input fields .
I have a Google Map on the webpage with markers on it that has
I have an app that saves google map markers, I basically save the lat
I have a Google Map (API 2) that used to work fine as a
Currently I have JavaScript that displays markers on a Google map using the Google
I have a google map inside a div that I need to be hidden
I have a Google Map that pulls data from Fusion Tables and displays it.
I have a Google map that is showing a number of markers. When the
I have a Google V3 map which uses steetView and some map markers. The
i have a simple google map, showing the driving directions from NY to LA,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.