Click here to Skip to main content
15,888,254 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to access in Google maps services in windows phone
using .net

[EDIT: Copied additional information posted as solution]
JavaScript
google.maps.project = true;
 
var map;
function initialize() 
{
  var mapOptions =
 {
    zoom: 8,
    center: new google.maps.LatLng(-34.397, 150.644)
  };
  map = new google.maps.Map(document.getElementById(map-canvas),
     mapOptions);
}


this code was not working
any solutin
Posted
Updated 22-Dec-13 22:28pm
v2

How to used Google maps services in android phone
 
Share this answer
 
C#
google.maps.project = true;

var map;
function initialize() 
{
  var mapOptions =
 {
    zoom: 8,
    center: new google.maps.LatLng(-34.397, 150.644)
  };
  map = new google.maps.Map(document.getElementById(map-canvas),
     mapOptions);
}


this code was not working
any solutin
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900