[Google Maps API v3] Layer above map

2011-07-27 Thread Daejeon
Some website able to display different layer on top of the map. For example we only show the information when we need it. We could hide the information from time to time. For example, the information found by search navigator. Is there anyone have any idea about how to do that? -- You receive

[Google Maps API v3] Re: MarkerClusterer - removing individual clusters

2011-07-25 Thread Daejeon
If there is no getCalculator? Is there any method to hide the icon? Thanks for the answer -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js

[Google Maps API v3] Re: Saving google map in some manners

2011-07-22 Thread Daejeon
How to retrieve the data? If I would like to save the cords into xml file instead of KML? Thanks -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-m

Re: [Google Maps API v3] Print google map together with marker!

2011-07-21 Thread Daejeon
window.print() works well. However, I would have to resize the map (for nice printing), add the title/date on the map. Whenever users print the map, I would able to save a copy of the map as well... something like this. Hm... I am still reading the api v3 documentation, but I couldn't find any

[Google Maps API v3] Re: Search in database (xml file)

2011-07-18 Thread Daejeon
How can I search in my own database? Example above is using Geocode, however, the problem is it depend on geocode database instead of mine. Is there any method to search other than geocode? Regarding to this post of Mike Williams http://econym.org.uk/gmap/geomulti.htm If I store address in xml

[Google Maps API v3] Search in database (xml file)

2011-07-18 Thread Daejeon
http://code.google.com/apis/maps/articles/phpsqlsearch_v3.html function searchLocationsNear(center) { clearLocations(); var radius = document.getElementById('radiusSelect').value; var searchUrl = 'phpsqlsearch_genxml.php?lat=' + center.lat() + '&lng=' + center.lng() + '&radius='

[Google Maps API v3] Re: Clustering/Grouping different markers under the same cluster

2011-07-18 Thread Daejeon
http://gmaps-utility-library.googlecode.com/svn/trunk/markerclusterer/1.0/src/markerclusterer.js I am currently trying marker clustering as well, and I able to cluster different category under same cluster by using the library above. On Saturday, 16 July 2011 00:26:02 UTC+8, julienhelios wro

[Google Maps API v3] Re: MarkerClusterer - The clustered markers are not shown.

2011-07-18 Thread Daejeon
Thank Rossko :) U have just solved my problem :) -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/6Dn7PNN_WqgJ. To post to this gr

[Google Maps API v3] Re: Converting from API v2 to API v3 and MarkerClusterer (v3)

2011-07-16 Thread Daejeon
Thanks Rossko for the answer, however...some how it works in IE. >.< I have just tried. The exactly the same code, the markers and the clustering markers both shows up in IE but Chrome >.< >.< >.< >.< ..What's the problem.. >.< >.< >.< Do you have any idea, what's going on?? Thanks for t

[Google Maps API v3] Re: Converting from API v2 to API v3 and MarkerClusterer (v3)

2011-07-15 Thread Daejeon
The marker just wont show. Anyone knows what could be the possible problem? Thank you very much. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-

[Google Maps API v3] Re: Converting from API v2 to API v3 and MarkerClusterer (v3)

2011-07-15 Thread Daejeon
Sorry, I would like to post my question here regarding clustering as well. Hope you don't mind. I downloaded markercluster v3 script as well and reviewing this example: http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerclusterer/1.0/examples/simple_example.html All works fine

[Google Maps API v3] Print google map together with marker!

2011-07-14 Thread Daejeon
(QUOTE from some where) There are several other questions addressing this issue: How to print Google Map markers The short, the Google Maps Javascript API doesn't print overlays (markers, lines) correctly or at all. You can use the Google Maps Static API, but you will be limited to the amount

Re: [Google Maps API v3] Re: Search from database

2011-07-12 Thread Daejeon
Thom: U found any solution? :) I have to search location from my own data too! -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-maps-js-api-v3/-/X

Re: [Google Maps API v3] Re: Create tile??

2011-07-11 Thread Daejeon
Thank you for your reply. But I still not very sure how it works. I am using local host, so even I share the link, I think you will not able to view. Can you please answer this question : http://localhost:49226/BoundFMS/Default10simplemap.aspx> view-source:http://code.google.com/apis/maps/docume

[Google Maps API v3] Re: Create tile??

2011-07-11 Thread Daejeon
I am still having problem with creating tiles and how to overlap my tiles in the Google map. Take this simple tutorial:http://localhost:49226/BoundFMS/Default10.aspx> http://code.google.com/apis/maps/documentation/javascript/examples/map-projection-simple.html I think the tile URL should be here

[Google Maps API v3] Re: Create tile??

2011-07-10 Thread Daejeon
Ops! Sorry! I didn't know about that! Actually, I just want to use their tiles to run my program, let see whether it works or not! But it seems like still not working! -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To view th

[Google Maps API v3] Re: Create tile??

2011-07-10 Thread Daejeon
Since they already created the tiles. Do you think I can just use the tiles? Can I view the whole collection of tiles, instead of adjust the x and y one by one? Hm... Thanks! -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. T

[Google Maps API v3] Create tile??

2011-07-07 Thread Daejeon
Please refer to this page: http://flood.firetree.net/?ll=16.3412,97.3388&z=12&m=7 FLD.tileBaseUrl='/solidtile/'; <--- What is this? I would like to create something like the link above. Display the different water level with the area predicted to be destroy. I just wonder, where does the tile c

[Google Maps API v3] Re: almost have markermanager v3 working with xml...but only showing last marker of xml data

2011-07-07 Thread Daejeon
http://gmaps-samples-v3.googlecode.com/svn/trunk/xmlparsing/ Example of XML data and attributes. My question is, is it necessary to use marker manager? The example above doing the same thing, but without marker manager. -- You received this message because you are subscribed to the Google Grou