[Google Maps API v3] Re: Google Maps V3 API WinForm Usage

2011-11-27 Thread Mr.Pohoda
I suggest you to use GMap.NET. I've tried web control in my mobile application and not all javascript worked. I suppose it will be the same in desktop application. In GMap.NET there are even things like marker clusterer and you can use google, openstreet layers, bing or yahoo if you want. If you

Re: [Google Maps API v3] Re: Google Maps V3 API WinForm Usage

2011-11-27 Thread Chris Broadfoot
I'm not familiar with the .NET framework, but in general, we recommend web views. Could you find a WebKit-based web view? Neither solution is directly supported, but use of GMap.NET violates the Terms of Service. Using a web view may not be covered by our supported browsers but in all likelihood

[Google Maps API v3] Re: Google Maps v3. Infowindow with button

2011-11-08 Thread ferquesada
Thanks, I got with another approach. With some help, this code works... google.maps.event.addListener(infoWindow, 'domready', function (e) { //attach the click event to the button. document.forms.button.onclick = function (e) { e.preventDefault();

[Google Maps API v3] Re: Google Maps v3. Infowindow with button

2011-11-06 Thread RoyHB
Have a look at adding an onclick event to the button... i.e. input type=button class=someClass value=Something onclick=javascript:someFunction(); so if you want the button to zoom in you might say: onclick=javascript:map.setZoom(map.getZoom) + 1); On Nov 6, 5:29 am, ferquesada

[Google Maps API v3] Re: google maps v3 icons list

2011-10-28 Thread jufemaiz
Not sure about the official maps (unofficial listing at http://mapki.com/wiki/Available_Images ) , but there *is* also http://mapicons.nicolasmollet.com/ -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To view this discussion

[Google Maps API v3] Re: google maps v3 icons list

2011-10-28 Thread Martin™
And some more listed here: http://www.visual-case.it/cgi-bin/vc/GMapsIcons.pl Martin. On Oct 28, 7:01 am, jufemaiz euphem...@gmail.com wrote: Not sure about the official maps (unofficial listing athttp://mapki.com/wiki/Available_Images) , but there *is*

[Google Maps API v3] Re: Google Maps V3 Api and geocoding

2011-10-12 Thread BruceB
You might want to check the terms of usehttp://code.google.com/apis/maps/terms.htmlto make sure that your application abides by the section regarding caching of content: (b) *No Pre-Fetching, Caching, or Storage of Content.* You must not pre-fetch, cache, or store any Content, except that you

[Google Maps API v3] Re: Google Maps V3 : rollover text with polygon

2011-09-13 Thread xelawho
I don't think tooltips are for polygons are built-in to the API, but you can use e-labels to make (and style) your own: https://github.com/erunyon/ELabel I believe people also use infobox, although there may be issues with that:

[Google Maps API v3] Re: Google Maps V3 Resize and Center in the same time. (with jQuery resize)

2011-08-17 Thread Kesuke
Ideally option 1 would work, but sometimes the animation complete function in JQuery fires before the DOM has actually finished rendering the animation - especially on older devices/mobile devices. You could try enclosing the resize in a setTimeout() method, probably with a generous time on it

[Google Maps API v3] Re: Google Maps V3 : Area Shape definition (Expert)

2011-08-02 Thread Bob Tedlar
Dear Sirs and Madams, I read that Google Maps V3 is the only reference for a developper ready to work with Google Maps (Tx Gary). I now have the main step to create a Polygon (Tx J.B. Hansen). Assistant to Franklin : I please ask you this question. How to pass the values between the MAP and the

[Google Maps API v3] Re: Google Maps V3 : Area Shape definition (Expert)

2011-08-01 Thread J.B. Hansen
Assuming: you already have made the markers and have some how separated them into groups based on area step 1) define a new google maps latLngBounds class for each of your marker groups step 2) figure out the Latitude and Longitude of each corner of each of your areas step 3) use the google

[Google Maps API v3] Re: Google Maps V3 : Area Shape definition (Expert)

2011-08-01 Thread Gary Little
From the V2 Reference: Note: The Google Maps Javascript API Version 2 has been officially deprecated as of May 19, 2010. The V2 API will continue to work as per our deprecation policy, but we encourage you to migrate your code to version 3 of the Maps Javascript API On Aug 1, 8:09 am, franklinNY

[Google Maps API v3] Re: Google Maps V3 infowindows showing the last data.

2011-07-28 Thread geocode...@gmail.com
On Jul 28, 12:44 am, kyusan93 kyusa...@gmail.com wrote: Hi Guys, I really need some help here. I have entered 7 data in my database and all the markers' infowindows are showing the last records. Any way I can make it work? Yes. 1. Read and follow the posting guidelines (post a link to

[Google Maps API v3] Re: Google Maps v3 only displaying about 1 map tile and leaving the rest of the map canvas gray

2011-06-16 Thread Rossko
Link to the live page with firebughttp://5.latest.foodtrucksmap.appspot.com I've spent an entire week trying to figure this out and haven't made any progress. I'm not suprised, I can't figure out how the page works at all. Something to do with truxmap.nocache.js perhaps, but that is

[Google Maps API v3] Re: Google Maps v3 only displaying about 1 map tile and leaving the rest of the map canvas gray

2011-06-16 Thread Joe Gawron
Hi Rossko, thanks for the explanation; I had a similar problem with http://maps.boisestate.edu, but 'solved' it because we chose to not support IE 7 and could use X-UA-Compatible content=IE8, forcing IE8 out of compatibility mode. Knowing the root cause is *much* better! Ivan,

[Google Maps API v3] Re: Google Maps v3 only displaying about 1 map tile and leaving the rest of the map canvas gray

2011-06-16 Thread Ivan
Rossko, I'm so sorry for wasting your time, I meant to link to http://5.latest.foodtrucksmap.appspot.com/la/ You're absolutely right though -- the parent of the div i was instantiating the map on was unsized, and the child was 100% width and height. Thanks!! On Jun 16, 2:56 am, Rossko

[Google Maps API v3] Re: Google maps v3 PHP/MYSQL

2011-03-28 Thread JKurtock
This is a PHP question, not a maps question. In your AJAX call, instead of just calling the url you can add a GET parameter with the name of the database you want to invoke. In your PHP program you just retrieve that parameter (you'll use the $_REQUEST variable, or others provided by PHP) and

[Google Maps API v3] Re: Google Maps v3 Directions error

2011-03-09 Thread Radina
Check variable declaration and chenge to: var directionsDisplay; //instead of directionDisplay; //Invoke the setPanel method after object instatiation. directionsDisplay = new google.maps.DirectionsRenderer( { suppressMarkers: true,

[Google Maps API v3] Re: Google Maps v3 Directions error

2011-03-09 Thread Ian
Thank you very much, you were very helpful :-) On Mar 9, 8:00 pm, Radina radi...@gmail.com wrote: Check variable declaration and chenge to: var directionsDisplay;       //instead of directionDisplay; //Invoke the  setPanel method after object instatiation. directionsDisplay = new

[Google Maps API v3] Re: Google maps v3

2011-02-18 Thread deepu
its working fine when i use it in google maps. wen i use the code above n execute in ma system with the correpondin lat n long for karunya university it does nt show all the locations. all the places - i meant al departments n building names. If i execute the above code i can c the buildings bt

[Google Maps API v3] Re: Google maps v3

2011-02-18 Thread Rossko
its working fine when i use it in google maps. wen i use the code above n execute in ma system with the correpondin lat n long for karunya university it does nt show all the locations. all the places - i meant al departments n building names. If i execute the above code i can c the buildings

[Google Maps API v3] Re: Google Maps v3 bucket policy conflict

2010-10-21 Thread Rossko
has nothing to do with secrets dude, i dont want to spend hours building map content for someone else: Okeydoke, but if you show people your content you can't stop them stealing it - with more or less work needed. You can only make it difficult. if you'll actually read the message you'll see

[Google Maps API v3] Re: Google Maps v3 bucket policy conflict

2010-10-20 Thread TPoaz
one note that i missed above: There is an html error code for http://gg.google.com;, of 204 204 No Content The server successfully processed the request, but is not returning any content. -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript

[Google Maps API v3] Re: Google Maps v3 bucket policy conflict

2010-10-20 Thread Rossko
Using s3 storage, I can load google maps v3 (not from s3 but from my website), i cannot download kml directly from s3 (which i want to protect my actual kml files from being downloaded) BUT - google maps v3 won't load the kml file using the enclosed s3 Bucket Policy, but will load the kml

Re: [Google Maps API v3] Re: Google Maps v3 bucket policy conflict

2010-10-20 Thread Andrew Leach
On 20 October 2010 22:43, TPoaz timpoh...@gmail.com wrote: one note that i missed above: There is an html error code for http://gg.google.com;,  of 204 204 No Content    The server successfully processed the request, but is not returning any content. A 200-series status is not an error.

[Google Maps API v3] Re: Google Maps v3 bucket policy conflict

2010-10-20 Thread TPoaz
has nothing to do with secrets dude, i dont want to spend hours building map content for someone else: I obviously want to share___ I just dont want YOU, THEM, Whoever to download my work without my permission. if you'll actually read the message you'll see that while i dont completely understand

[Google Maps API v3] Re: Google Maps v3 bucket policy conflict

2010-10-20 Thread Grok Lobster
This forum is intended for programmers. On Oct 20, 7:56 pm, TPoaz timpoh...@gmail.com wrote: has nothing to do with secrets dude, i dont want to spend hours building map content for someone else: I obviously want to share___ I just dont want YOU, THEM, Whoever to download my work without my

[Google Maps API v3] Re: Google Maps v3 - Extracting data from .xml file

2010-07-08 Thread Trachy
Thanks I've used XMLHttpRequest Trachy On 8 juil, 01:36, Chad Killingsworth chadkillingswo...@missouristate.edu wrote: Try looking at this example:http://code.google.com/apis/maps/documentation/javascript/demogallery... Chad Killingsworth On Jul 7, 6:41 

[Google Maps API v3] Re: Google Maps v3 - Extracting data from .xml file

2010-07-07 Thread Chad Killingsworth
Try looking at this example: http://code.google.com/apis/maps/documentation/javascript/demogallery.html?searchquery=xml Chad Killingsworth On Jul 7, 6:41 am, Trachy philippe.cabarb...@dbmail.com wrote: Hello, I try to convert my Google Maps V2 application in a GM V3 one. In V2, I could

[Google Maps API v3] Re: Google Maps v3 Satellite View won't print properly from many browsers

2010-06-27 Thread Rossko
Really, this is Google's problem, and they should set to and solve it. Add your star to relevant issue(s) http://code.google.com/p/gmaps-api-issues/issues/detail?id=1343 -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post

[Google Maps API v3] Re: Google Maps v3 Satellite View won't print properly from many browsers

2010-06-26 Thread JavaJive
On Jun 25, 12:02 pm, Miguel Angel Vilela mig...@google.com wrote: On Fri, Jun 25, 2010 at 12:33, JavaJive c.e.m.harri...@macfh.co.uk wrote: Looks doable with Static Maps API, just add a print link or button that will open a new window/tab with the printable version. It's not a solution I like

[Google Maps API v3] Re: Google Maps v3 Satellite View won't print properly from many browsers

2010-06-25 Thread JavaJive
Unfortunately, I need the user to be able to interact with the map, dragging a marker around to fix a location, then print it, showing the satellite imagery and at least the marker line. The pages concerned are to allow the user to point a satellite dish and a Terrestrial TV Aerial:

Re: [Google Maps API v3] Re: Google Maps v3 Satellite View won't print properly from many browsers

2010-06-25 Thread Miguel Angel Vilela
On Fri, Jun 25, 2010 at 12:33, JavaJive c.e.m.harri...@macfh.co.uk wrote: Unfortunately, I need the user to be able to interact with the map, dragging a marker around to fix a location, then print it, showing the satellite imagery and at least the marker line. The pages concerned are to

[Google Maps API v3] Re: Google Maps v3 Satellite View won't print properly from many browsers

2010-06-25 Thread Chad Killingsworth
If printing is going to be officially handed off to the static maps api (which is a pretty good solution), then KMLLayers need supported: http://code.google.com/p/gmaps-api-issues/issues/detail?id=207 Chad Killingsworth On Jun 25, 4:43 am, Miguel Angel Vilela mig...@google.com wrote: Printing