User1876077155 posted
string sStreetAddress = "";
string sMapKey = Convert.ToString(ConfigurationManager.AppSettings["googlemaps.subgurim.net"]);
//Subgurim.Controles.GeoCode GeoCode = default(Subgurim.Controles.GeoCode);
Subgurim.Controles.GeoCode GeoCode;
sStreetAddress = "India";
GeoCode = GMap1.geoCodeRequest(sStreetAddress, sMapKey);
Subgurim.Controles.GLatLng gLatLng = new Subgurim.Controles.GLatLng(GeoCode.Placemark.coordinates.lat,
GeoCode.Placemark.coordinates.lng);
GMap1.setCenter(gLatLng, 16, Subgurim.Controles.GMapType.GTypes.Normal);
Subgurim.Controles.GMarker oMarker = new Subgurim.Controles.GMarker(gLatLng);
GMap1.addGMarker(oMarker);
this is my code and i found a error i cant resolve it...
Static member 'Subgurim.Controles.GMap.geoCodeRequest(string, string)'
cannot be accessed with an instance reference; qualify it with a type name instead