Questions tagged [subgurim-maps]

Subgurim Maps is an ASP.NET complete wrapper around Google Maps Javascript libraries that leverages the developer from the inner workings of the Javascript API. It's available in more than 25 languages.

Subgurim Maps is an ASP.NET complete wrapper around Google Maps Javascript libraries that leverages the developer from the inner workings of the Javascript API. It's available in more than 25 languages.

Links

32 questions
3
votes
1 answer

Polygons are not shown on gmap

We have a problem creating polygons, as they do not appear on the map. We have followed this tutorial to implement our solution: http://googlemaps.subgurim.net/ejemplos/ejemplo_94100_Pol%C3%ADgonos.aspx The application is developed in visual…
araad1992
  • 104
  • 10
3
votes
1 answer

How to set the center of the map with Javascript and Subgurim Maps

I want to set the center of a map with Javascript. I can only find some code with Markers in it, but I want the client side code for this: /* Server code */ GMap1.setCenter(latlng, zoomLevel, mapType ); I would like to do this (it's non working…
Michel
  • 23,085
  • 46
  • 152
  • 242
1
vote
1 answer

Problems putting coordinates on a textbox for DragEnd event with Subgurim Maps

I'm trying to create a draggable marker with Subgurim and reading the final variables to textboxes. I've got all working, except the part where I put the coords on a textbox. The codebehind: protected void Page_Load(object sender, EventArgs e){ …
sergio
  • 1,026
  • 2
  • 19
  • 43
1
vote
1 answer

Pan to center and change icon when clicked on a marker with Subgurim Maps and jQuery

It is a question regarding Subgurim Google Maps wrapper in ASP.NET. I would like to know if I can do this from a client side: Click on a button then a using jQuery to pan a marker to center and change its icon (image). Would it be possible? Thanks…
olidev
  • 20,058
  • 51
  • 133
  • 197
1
vote
1 answer

how to plot circles in subgurim google maps?

i work with subgurim google maps v4 .i need to plot several circles with different colors based on (latitude,lnogitude,radius) .how can i perform it? during search i found multiple codes to drow the circle but not using subgurim google maps.can one…
Enas Ali
  • 72
  • 1
  • 9
1
vote
1 answer

Google Maps Subgurim - Polygons are not working anymore

I'm developing a Geolocalisation application based on ASP.NET and Google Maps Subgurim . However , since this morning , the Polygons on my application stop showing . I thought it was my code , until i saw that the polygons and the official website…
Kuashe
  • 41
  • 8
1
vote
1 answer

Subgurim component clearOverlays() in Google Maps V3. How to delete markers?

I am using the last version of GoogleMaps.Subgurim.NET dll in a C# web forms project. I was wondering how it was possible to obtain the effect of the clearOverlays() method of Google Maps v2, in v3, using that component. Let me give you an example;…
Antelion
  • 155
  • 2
  • 14
1
vote
1 answer

Can I set the z-order of painted GMarker with Subgurim Maps?

I'm painting some GMarkers on a map with Subgurim Map control. Sometimes the GMarkers overlap each other. That isn't a problem, but I want one specific one, which is kwown when I put it on the map, on top of all the others because that is the one…
Michel
  • 23,085
  • 46
  • 152
  • 242
1
vote
3 answers

Clear all Icons/Markers/InfoWindows in Subgurim Maps

I've placed, say 20 InfoWindows+Markers+Icons on my map. When the user pans to the right, I want to remove all existing InfoWindows+Markers+Icons on my map and paint the new ones. Is there an easy way to do this?
Michel
  • 23,085
  • 46
  • 152
  • 242
1
vote
1 answer

Google Map Subgurim Show Arrowed Polyline

I am using Subgurim asp.net control for Google Maps in ASP.net. The Problem is that I need to show an ARROWED POLYLINE betwwen my two points on map. Following is my code , but unfortunately I am not able to apply anything for that: GLatLng from =…
Vegeta
  • 291
  • 2
  • 7
  • 20
0
votes
2 answers

Subgurim Maps control causing javascript errors ("GUnload undefined")

I want to implement a Google Map on my .NET page. I used the tool from Subgurim, I could add the components well, but when browsing the page, I get tons of Javascript errors like: GUnload is undefined And the map is not shown. I read many posts…
AGuyCalledGerald
  • 7,882
  • 17
  • 73
  • 120
0
votes
1 answer

How to always show the infowindow in a marker in google maps Subgurim?

Here is our code using the Google Maps Subgurim GInfoWindow window1 = new GInfoWindow(icon1, "bin 1", false, Glistener.Event.mouseover); GMap1.Add(window1); GInfoWindow window2 = new GInfoWindow(icon1, "bin 2", false,…
m1gs
  • 197
  • 2
  • 17
0
votes
1 answer

Subgurim maps control wont render inside a Formview

I want to create a subgurim maps control inside a Formview in an asp.net web form page. When I add it to an item template in a formview it wont render. When I place it outside the Formview it renders fine. Is there something I am missing? Code where…
edezzie
  • 1,657
  • 4
  • 14
  • 12
0
votes
1 answer

How to keep the height and width of a div inside AJAX UpdatePanel

I'm using the library subgurim to work with google maps. How to keep the height and width of GMap1 inside AJAX UpdatePanel when partial PostBack occurs? Default.aspx:
jupem3n
  • 1
  • 3
0
votes
2 answers

How to programatically select the data from GridView1's first row 4th column cell on page load and save it to a variable in C# asp.net

I am new to asp.net and C# web application development. My question is: I have a GridView1 which is bound to a data source which is getting data from a SQL Server table. Gridview1 has these columns: select(default select available in gridview to…
Deepak Gaur
  • 23
  • 1
  • 5
1
2 3