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 972625
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T03:09:13+00:00 2026-05-16T03:09:13+00:00

How can I use Google Maps API to show me a full screen map

  • 0

How can I use Google Maps API to show me a full screen map with no sidebars or search bar? I just need it to show a specific location in a mobile app, users don’t need to search. Is this possible?

Also if I provide a street address how can it put a push-pin at the location?

  • 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-05-16T03:09:13+00:00Added an answer on May 16, 2026 at 3:09 am

    Assuming you are planning to use the v3 API, you may want to check the following section of the documentation:

    • Developing for Mobile Devices (iPhone and Android device)

    As for your second question, you can use Geocoding. Consider the following simple example:

    <!DOCTYPE html>
    <html> 
    <head> 
       <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> 
       <title>Google Maps Geocoding Demo</title> 
       <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
       <script src="http://maps.google.com/maps/api/js?sensor=false" 
               type="text/javascript"></script> 
       <style type="text/css">
         html { height: 100% }
         body { height: 100%; margin: 0px; padding: 0px }
         #map { height: 100% }
       </style>
    </head> 
    <body> 
       <div id="map"></div> 
    
       <script type="text/javascript"> 
    
       var address = 'Oxford Street, London, UK';
    
       var map = new google.maps.Map(document.getElementById('map'), { 
           mapTypeId: google.maps.MapTypeId.TERRAIN,
           zoom: 12
       });
    
       var geocoder = new google.maps.Geocoder();
    
       geocoder.geocode({
          'address': address
       }, 
       function(results, status) {
          if(status == google.maps.GeocoderStatus.OK) {
             new google.maps.Marker({
                position: results[0].geometry.location,
                map: map
             });
             map.setCenter(results[0].geometry.location);
          }
          else {
             // Google couldn't geocode this request. Handle appropriately.
          }
       });
    
       </script> 
    </body> 
    </html>
    

    Screenshot:

    Full Screen Google Map

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

Sidebar

Related Questions

I use Google Maps js API v3. I can show directions with waypoints based
I'm learning the Google Maps API and I was wondering whether I can use
i've read that you can use either javascript or php with google maps api.
Is there any way I can use a KMZ file in Google Maps? My
Right now I can use this URL to request a Google Static Maps image
How can i show the following result: http://maps.googleapis.com/maps/api/directions/json?origin=hadera&destination=haifa&sensor=false on a map? i want to
Using the google maps API (v3) I can successfully add an array of markers
I want to use Google Maps API to draw an area around a particular
Which modules can I use to add a google map to a node with
I use the google maps family API. I want to display a car on

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.