Re: [Google Maps API v3] Re: GHierarchicalMapTypeControl for V3?

2012-09-07 Thread Chad Killingsworth
It doesn't look to be that popular of a feature request. More people need to star the issue: http://code.google.com/p/gmaps-api-issues/issues/detail?id=2490 Chad Killingsworth On Friday, September 7, 2012 5:53:21 PM UTC-5, Andrew Leach wrote: On 7 September 2012 21:11, Patrick Maynard

Re: [Google Maps API v3] Help with University Map

2012-06-14 Thread Chad Killingsworth
I presented at the HighEdWeb conference in 2010 on campus maps and specifically address your issues. Here's the presentation: http://blogs.missouristate.edu/web/2010/10/12/maps-heweb10/ Chad Killingsworth On Thursday, June 14, 2012 3:24:21 AM UTC-5, Chris Broadfoot (Google Employee) wrote

[Google Maps API v3] Re: kmz rendering problem

2012-05-12 Thread Chad Killingsworth
It looks like your site has a connectivity problem which would explain why your kml layer isn't drawing. DNS resolved fine - just can't connect. http://www.downforeveryoneorjustme.com/http://www.yarvolgar.com/fda/fdaRegions.html On Friday, May 11, 2012 5:05:01 PM UTC-5, Anthony D wrote:

[Google Maps API v3] Re: changing map overlay to V3 from V2

2012-01-10 Thread Chad Killingsworth
Unless I'm missing something, looks to me like it would just be an ImageMapType: http://code.google.com/apis/maps/documentation/javascript/maptypes.html#ImageMapTypes -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To view

[Google Maps API v3] Re: changing cursor back to default

2011-12-21 Thread Chad Killingsworth
The maps API uses a custom cursor. Currently it is: url(http://maps.gstatic.com/mapfiles/openhand_8_8.cur), default -- 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

[Google Maps API v3] Re: Ajax functionality when using KML files??

2011-12-20 Thread Chad Killingsworth
Have you looked at Fusion Tables? -- 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/-/sWoZnHVAFuQJ. To post to this group, send email

[Google Maps API v3] Re: How Does GMaps Avoid the Cross-Domain Browser Restriction?

2011-12-18 Thread Chad Killingsworth
The standard workarounds: JSONP and dynamic script node insertion. There are extra concerns when dealing with CANVAS cross-domain that the team has spoken about at Google I/O. -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To

Re: [Google Maps API v3] Re: question reading MarkerOptions stored in array

2011-12-18 Thread Chad Killingsworth
marker.myAttribute = myAttributeValue; // if you need this This behavior really shouldn't be recommended. In most cases it's just as easy to do: var markerInfo = createMarker(...); // probably global markerInfo.myAttribute = myAttributeValue; // if you need this markers.push(markerInfo); ...

[Google Maps API v3] Re: question reading MarkerOptions stored in array

2011-12-17 Thread Chad Killingsworth
You can assign custom properties to marker objects, such as a url, class or identifier, so long as you take care not to clash with an existing Google property. Eek take care doing that. Those property names can and do change without notice. Something that used to work can suddenly break

[Google Maps API v3] Re: question reading MarkerOptions stored in array

2011-12-17 Thread Chad Killingsworth
True. You are pretty safe doing that. In reality, I've never seen Closure-compiler renamed variables make it past two letters in length, so anything significantly longer than that is probably safe. -- You received this message because you are subscribed to the Google Groups Google Maps

[Google Maps API v3] Re: question reading MarkerOptions stored in array

2011-12-17 Thread Chad Killingsworth
Something like this: var MyMarkerInfo = { marker: new google.maps.Marker(opt_opts), extraInfo: myExtraInformation }; -- 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

[Google Maps API v3] Re: Problems changing kmlLayer dynamically on view change

2011-12-16 Thread Chad Killingsworth
Glad I could help - even a little. - You are correct in that many maps implementations end up writing their own throttling methods for events like bounds_changed. - The timeout of Google's servers in regards to kml file fetching is a frustration many face and your local caching solution sounds

[Google Maps API v3] Re: Ajax functionality when using KML files??

2011-12-15 Thread Chad Killingsworth
With the google.maps.KmlLayer implementation, I can't think of any reason you'd want to do this (not saying there isn't one). Regardless of the size or amount of data in your kml file, the impact to the client browser is basically the same - that is to say slightly more than an image tile

[Google Maps API v3] Re: Problems changing kmlLayer dynamically on view change

2011-12-15 Thread Chad Killingsworth
- I have managed to add listeners to get the basic user events, although I think they're a bit clumsy - suggestions welcome Rather than using the idle event, have you tried bounds_changed? - I seem to be able to manually construct a url to pass to my kml service and then display the

[Google Maps API v3] Re: any chances for for a google.maps.MapOptions allowedBounds property with latLngBounds as attribute?

2011-12-14 Thread Chad Killingsworth
Sounds like you'll want to star this issue to both vote for it and keep track of its progress: http://code.google.com/p/gmaps-api-issues/issues/detail?id=3457 -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To view this

[Google Maps API v3] Re: adding markers to locations using address

2011-12-12 Thread Chad Killingsworth
Did you look at the documentation and samples? http://code.google.com/apis/maps/documentation/javascript/services.html#Geocoding -- 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

[Google Maps API v3] Re: Links from KML file opening new tab / browser window

2011-12-10 Thread Chad Killingsworth
You can't override this, but you can implement your own info window handling and replace the attribute. Here's a snippet of code demonstrating the solution: http://people.missouristate.edu/chadkillingsworth/mapsexamples/removekmllinktargets.js -- You received this message because you are

[Google Maps API v3] Re: mapTypeId is undefined

2011-12-10 Thread Chad Killingsworth
is undefined http://roadrunner.cs.wcupa.edu/~sr640468/project/map2.php Line 23 here my code A link to your broken map is all that's needed. Code posted in the group does little good. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps

[Google Maps API v3] Re: Centering, Display Issues (New to Forum)

2011-12-10 Thread Chad Killingsworth
For 1: This may actually be related to issue number 2. Fix it first. For 2: When you change the visibility of the map, you need to trigger the map resize event: http://code.google.com/apis/maps/documentation/javascript/reference.html#Map Also, I'm getting a couple of non-map related script

[Google Maps API v3] Re: Are there valid KML tags that will cause the API to refuse to display a KML file?

2011-11-04 Thread Chad Killingsworth
Did you have specific tags whose presence caused your KML layer not to render? -- 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

[Google Maps API v3] Re: Multiple KML layer, preserveViewport problem

2011-03-30 Thread Chad Killingsworth
Can you post a link to your map? Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api-v3@googlegroups.com. To unsubscribe from this group, send email

[Google Maps API v3] Re: problem adding a second KML layer - it does not display

2011-03-27 Thread Chad Killingsworth
http://web.mit.edu/dsheehan/www/RoadToVillage.kml returns a 404 error. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api-v3@googlegroups.com

[Google Maps API v3] Re: Polylines and IE8

2011-03-26 Thread Chad Killingsworth
. All other browsers handle the hanging comma differently. -- Larry FYI, IE9 fixes this issue (hurray!) Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps

[Google Maps API v3] Re: big problem when building gmaps mobile apps..

2011-03-25 Thread Chad Killingsworth
The articles sections has step-by-step walkthroughs for this on both iOS and Android. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api-v3

[Google Maps API v3] Re: Trigger click event on KMLFeature

2011-03-22 Thread Chad Killingsworth
I recommend you star this issue to vote for it and track it's progress: http://code.google.com/p/gmaps-api-issues/issues/detail?id=3006 Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group

[Google Maps API v3] Re: Problem in Android with zooming maps (multi-touch function won't work)

2011-03-21 Thread Chad Killingsworth
Here's the answer: http://code.google.com/p/gmaps-api-issues/issues/detail?id=2252 Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api-v3@googlegroups.com

[Google Maps API v3] Re: Events in Polygons generated loading KML file

2011-03-18 Thread Chad Killingsworth
Correct. Kml features do not have mouseover events. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api-v3@googlegroups.com. To unsubscribe from this group

[Google Maps API v3] Re: Custom map marker for KML

2011-03-17 Thread Chad Killingsworth
Then in your code you'll need a function like: function handleFoursquareResults(jsonData) { //do something with results } Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email

[Google Maps API v3] Re: KML layer order again

2011-03-16 Thread Chad Killingsworth
This isn't the answer you wanted, but make sure you start this issue: http://code.google.com/p/gmaps-api-issues/issues/detail?id=2804 Support of a z-index for kml layers would alleviate development headaches like yours. Chad Killingsworth -- You received this message because you

[Google Maps API v3] Re: Custom map marker for KML

2011-03-16 Thread Chad Killingsworth
You would need to modify the Kml I believe. You could do an xsl transformation on the kml feed and draw the result on your map. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send

[Google Maps API v3] Re: KML + GeoLocation?

2011-03-16 Thread Chad Killingsworth
Take a look at the samples: http://code.google.com/apis/maps/documentation/javascript/examples/layer-kml.html Also, I've written extensively about just such a project. See http://blogs.missouristate.edu/web/tag/map Chad Killingsworth -- You received this message because you are subscribed

[Google Maps API v3] Re: Missing Marker on high Zoom level

2011-03-15 Thread Chad Killingsworth
On Tuesday, March 15, 2011 7:17:59 AM UTC-5, Markus wrote: Same Problem, private Data. Same problem here - a link to code exhibiting the problem is required. Often times the process of simplifying your code down to a test case leads to the answer on it's own. Chad Killingsworth -- You

[Google Maps API v3] Re: API auxilliary JS files - cacheability

2011-03-15 Thread Chad Killingsworth
I'd prefer to let the maps team decide what script gets sent for each browser. We're talking about restricting/requiring specific features. These wouldn't be browser specific (ex: adsense works on all browsers, but none of my maps use it). Chad Killingsworth -- You received this message

[Google Maps API v3] Re: API auxilliary JS files - cacheability

2011-03-14 Thread Chad Killingsworth
It's less about bandwidth savings and more about the latency delay caused by individual connections - especially on a mobile device. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send

[Google Maps API v3] Re: API auxilliary JS files - cacheability

2011-03-14 Thread Chad Killingsworth
Allowable cache sizes have dramatically increased on the iPhone: http://www.yuiblog.com/blog/2010/06/28/mobile-browser-cache-limits/ Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send

[Google Maps API v3] Re: 2011/3/2 - New Release

2011-03-11 Thread Chad Killingsworth
to draw and should animate. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api-v3@googlegroups.com. To unsubscribe from this group, send email to google-maps-js

[Google Maps API v3] Re: google maps not loading fully when div in hidden

2011-03-09 Thread Chad Killingsworth
You need to trigger the resize event on the map after the div is shown. See http://code.google.com/apis/maps/documentation/javascript/reference.html#Map Chad Killingsworth -- 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 not loading fully when div in hidden

2011-03-09 Thread Chad Killingsworth
If you need more help, you'll need to post a link to your site per the posting guidelines. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api-v3

[Google Maps API v3] Re: KmlLayer works on Test site, doesn't work on Live site

2011-03-03 Thread Chad Killingsworth
I can't resolve that host name in DNS. I'm guessing that's your problem since Google probably can't either. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js

[Google Maps API v3] Re: markers with animated gifs don't work in api v3

2011-03-03 Thread Chad Killingsworth
Sure did: https://groups.google.com/d/topic/google-maps-js-api-v3/LeDqN1ZwY9g/discussion As a workaround, try setting draggable: true on your markers. Chad Killingsworth -- 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: IE8 on production

2011-03-03 Thread Chad Killingsworth
See https://groups.google.com/d/topic/google-maps-js-api-v3/Kz8QH9UJkZ4/discussion We'll seriously need a link to your site to help at all. Chad Killingsworth -- 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: Iphone 4 weird behaviour

2011-03-02 Thread Chad Killingsworth
I don't have an iPhone 4 so I'm relegated to educated guesses. The links you have use frames and they may be playing into this as well. The viewport meta tag should go on the frames page by the way if that's what's being loaded into your phone. Chad Killingsworth -- You received this message

[Google Maps API v3] Re: 2011/3/2 - New Release

2011-03-02 Thread Chad Killingsworth
Custom icons - using canvas (in supporting browsers): http://code.google.com/apis/maps/documentation/javascript/examples/icon-complex.html http://code.google.com/apis/maps/documentation/javascript/examples/icon-complex.htmlChad Killingsworth On Wednesday, March 2, 2011 11:59:45 AM UTC-6,

[Google Maps API v3] Re: Markers changed to render via canvas?

2011-03-01 Thread Chad Killingsworth
If you don't specify a version when you load your map, you frequently will get code with changes that haven't yet been announced. This is great for development sites and not so great for productions ones. Chad Killingsworth -- You received this message because you are subscribed to the Google

[Google Maps API v3] Re: Native iPhone Applications

2011-03-01 Thread Chad Killingsworth
Does your embeded map link work when you open it directly in Safari? Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api-v3@googlegroups.com. To unsubscribe

[Google Maps API v3] Re: Iphone 4 weird behaviour

2011-03-01 Thread Chad Killingsworth
What happens if you add the following meta tag to the head of the map document? meta name=viewport content=initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0 / Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3

[Google Maps API v3] Re: marker.setZIndex seems to no longer work

2011-03-01 Thread Chad Killingsworth
This may be an unintended side affect of a new rollout. See https://groups.google.com/d/topic/google-maps-js-api-v3/hlaFCakWshk/discussion Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group

[Google Maps API v3] Re: KMLLayer, Javascript, PHP and mySql

2011-02-17 Thread Chad Killingsworth
tag is not closed. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api-v3@googlegroups.com. To unsubscribe from this group, send email to google-maps-js-api

[Google Maps API v3] Re: how to limit overlay CoordMapType to only visible on particular MapTypeID

2011-02-14 Thread Chad Killingsworth
You'll need to hook into the maptypeid_changed event. In the event, if the new MapTypeID is not one of the types you wish, remove your overlay from the map. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group

[Google Maps API v3] Re: Alternative to KmlLayer

2011-02-10 Thread Chad Killingsworth
Trying this morning in IE9, Firefox 3.6 and Chrome 10 I couldn't get a single instance of a tile problem. I tried normal tricks such as rapidly changing zoom levels and they still all showed up. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups

[Google Maps API v3] Re: Alternative to KmlLayer

2011-02-09 Thread Chad Killingsworth
massively helped your response times as Google's server would not have to re-render your data on every request. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js

[Google Maps API v3] Re: Custom overlay and Closure Compiler

2011-02-09 Thread Chad Killingsworth
- without it the compiler will think that the this keyword refers to the global scope. Also note that with these OverlayView methods, you will also need the @override annotation. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps

[Google Maps API v3] Re: pinch to zoom problems in Firefox

2011-02-08 Thread Chad Killingsworth
It looks to me like FireFox itself doesn't support touch events prior to version 4: https://developer.mozilla.org/en/DOM/Touch_events No touch events = no pinch to zoom. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API

[Google Maps API v3] Re: Browser event object loosing parameter names

2011-02-08 Thread Chad Killingsworth
://groups.google.com/d/topic/google-maps-js-api-v3/8w6N-tnLLJs/discussion Chad Killingsworth On Tuesday, February 8, 2011 11:13:46 AM UTC-6, sgiddings wrote: UPDATE * Yes, I got it wrong again. This is a callback for a mouse event within Google Map API v3. Undocumented properties

Re: [Google Maps API v3] Re: Externs file for use with Closure-Compiler

2011-02-07 Thread Chad Killingsworth
In general, externs for Closure-Compiler are kept with the Compiler Source. The http://code.google.com/p/closure-compiler/source/browse/#svn%2Ftrunk%2Fcontrib%2Fexterns folder is a great place to look for them. Chad Killingsworth -- You received this message because you are subscribed

[Google Maps API v3] Re: map loads in internet but not in local testing environment

2011-02-03 Thread Chad Killingsworth
That Url always returns a 204 No Content response. The interesting thing is the size=1154x2 parameter. Are you sure your div has actual size? Try using the HTML tab in FireBug to inspect it and make sure your div has a height. Chad Killingsworth -- You received this message because you

[Google Maps API v3] Re: Switching layers/overlays

2011-01-25 Thread Chad Killingsworth
KML Layers automatically center and zoom the map unless you disable that functionality. Here's how you do it: var city = new google.maps.KmlLayer('http://www.peakhunters.org/city.kml', {preserveViewport: true}); Chad Killingsworth -- You received this message because you are subscribed

[Google Maps API v3] Re: Layers - alternative solutions to publicly available KML/data?

2011-01-24 Thread Chad Killingsworth
No (at least I doubt it). But it is the only way to legally use the API on a private site (without a public map), or freely available login credentials. Ben Appleton made a post a while ago on how to have semi-private KML urls. That poster had a premier license. Chad Killingsworth

[Google Maps API v3] Re: Problem loading Maps v3 with Common API Loader

2011-01-24 Thread Chad Killingsworth
Is there a reason you got rid of the google.setOnLoadCallback call in favor of the onload attribute on the body tag? Also, if you'll actually post a link to your map, we might be able to offer more help. Chad Killingsworth -- You received this message because you are subscribed to the Google

[Google Maps API v3] Re: API and Opera

2011-01-24 Thread Chad Killingsworth
://code.google.com/apis/maps/faq.html#browsersupport http://code.google.com/apis/maps/faq.html#browsersupportBut Opera still isn't supported. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group

[Google Maps API v3] Re: How to add a Google Map dynamically to my webpage

2011-01-24 Thread Chad Killingsworth
So far... why don't you link us what you have tried. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api-v3@googlegroups.com. To unsubscribe from this group

[Google Maps API v3] Re: Information window not adjusting to size of content within and the text runs outside of the bottom of the window.

2011-01-24 Thread Chad Killingsworth
The API will automatically adjust the info window size, with certain exceptions. Do you have a link to an example of your map? Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email

[Google Maps API v3] Re: Download/Cache JS

2011-01-24 Thread Chad Killingsworth
Actually, I'm pretty sure there are specific measures in the API that prevent this. You might be interested in other ways to speed up your mobile app: http://blogs.missouristate.edu/web/2010/05/12/google-maps-api-v3-developing-for-mobile-devices/ Chad Killingsworth -- You received

[Google Maps API v3] Re: rails and kml issue

2011-01-21 Thread Chad Killingsworth
Step 1: Validate your KML: http://www.kmlvalidator.com/home.htm Step 2: Make sure it is generated in a timely fashion. Anything longer than 2 seconds is suspect. Step 3: Follow the posting guidelines as Rossko pointed out so we have some chance of helping you. Chad Killingsworth -- You

[Google Maps API v3] Re: rails and kml issue

2011-01-21 Thread Chad Killingsworth
The problem is that to view your KML file, you have to be logged into your site. The Kml file will need to be public for Google's servers to be able to index it. You can check this by using http://maps.google.com/?q=http://www.cobboc.com/activities/0.kml Chad Killingsworth -- You received

[Google Maps API v3] Re: Polylines segments with different colors( A LOT of it )

2011-01-19 Thread Chad Killingsworth
You might consider using Barry Hunter's PolyCluster library. See https://groups.google.com/d/msg/google-maps-js-api-v3/8R4_f6IRJiQ/Ip_dWrRr_XkJ Chad Killingsworth -- 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: Filter data on map?

2011-01-19 Thread Chad Killingsworth
Sure. Best way is to connect each filter to it's own KmlLayer (or Fusion Table layer). All of the layers will be combined into a single tile layer on the client. See http://search.missouristate.edu/map/ for an example of this. Chad Killingsworth -- You received this message because you

[Google Maps API v3] Re: how to show marker on two google map frames

2011-01-19 Thread Chad Killingsworth
post a link to your map rather than posting code per the posting guidelines. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api-v3@googlegroups.com

[Google Maps API v3] Re: Draggable Directions with elevation profile

2011-01-19 Thread Chad Killingsworth
Can you post a link to what you've tried? It's easier to start from that. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api-v3@googlegroups.com

[Google Maps API v3] Re: Adding data from a dbf or spread sheet. (using private data and keeping it private)

2011-01-18 Thread Chad Killingsworth
Unless you have a premier license, the terms of service state that your map needs to be public. Ignoring that issue, you can use ajax calls and verify that the user is authenticated on the server before returning any data. Chad Killingsworth -- You received this message because you

[Google Maps API v3] Re: Problem with multiple maps on one page - not centered tiles missing

2011-01-14 Thread Chad Killingsworth
the resize event on that map. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api-v3@googlegroups.com. To unsubscribe from this group, send email to google-maps-js

[Google Maps API v3] Re: Map returns 403 error

2011-01-14 Thread Chad Killingsworth
the terms of service. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api-v3@googlegroups.com. To unsubscribe from this group, send email to google-maps-js-api-v3

[Google Maps API v3] Re: phpsqlajax_v3 Example Code

2011-01-14 Thread Chad Killingsworth
Use a tool like Firebug that lets you see resource requests. When you load your map, you will be able to see a lot of what is going on. Does the XML ever get requested? Did it return a valid result? etc. Other than that, you'll need to find a public location to post a link. Chad Killingsworth

[Google Maps API v3] Re: getCurrentPosition watchPosition

2011-01-12 Thread Chad Killingsworth
You can use both at the same time. However, I've typically used getCurrentPosition and in the success callback setup watchPosition. In that way you know that you are allowed to use location and have received a valid position before constantly tracking. Chad Killingsworth -- You received

Re: [Google Maps API v3] Re: Android 2.2 no GPS code

2011-01-11 Thread Chad Killingsworth
You might try setting the enableHighAccuracy option: http://www.w3.org/TR/geolocation-API/#position_options_interface Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email

[Google Maps API v3] Re: Is it possible to load fantasy maps in GoogleMap API v3?

2011-01-06 Thread Chad Killingsworth
Search is your friend: https://groups.google.com/d/topic/google-maps-js-api-v3/UEIbpcTdMHs/discussion Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api

[Google Maps API v3] Re: drawing fixed length polyline

2011-01-04 Thread Chad Killingsworth
://code.google.com/apis/maps/documentation/javascript/overlays.html#CustomOverlays Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api...@googlegroups.com. To unsubscribe

[Google Maps API v3] Re: Issue with map inside a tab

2010-12-22 Thread Chad Killingsworth
: google.maps.event.addDomListener(getElementsByHref('mapa')[0], 'click', function(){ window.setTimeout(function() { var center = map.getCenter(); google.maps.event.trigger(map, 'resize'); map.setCenter(center); }, 100); }); Chad Killingsworth -- You received this message because you are subscribed

[Google Maps API v3] Re: Maps in a PopUp - main.js wont load in IE Opera

2010-12-21 Thread Chad Killingsworth
. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api...@googlegroups.com. To unsubscribe from this group, send email to google-maps-js-api-v3+unsubscr

[Google Maps API v3] Re: Issue with map inside a tab

2010-12-21 Thread Chad Killingsworth
= map.getCenter(); google.maps.event.trigger(map, 'resize'); map.setCenter(center); }); Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api

[Google Maps API v3] Re: Populating markers through geolocation after processing request

2010-12-21 Thread Chad Killingsworth
a personal limit rather than an application limit). Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api...@googlegroups.com. To unsubscribe from this group, send

[Google Maps API v3] Re: passing parameters and unique links

2010-12-21 Thread Chad Killingsworth
links might be formatted something like: http://mydomain.com/map/file.htm#link1 Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api...@googlegroups.com

[Google Maps API v3] Re: XY position of Marker

2010-12-15 Thread Chad Killingsworth
/google-maps-js-api-v3/bSSFh8Y_ZxY/discussion Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api...@googlegroups.com. To unsubscribe from this group, send email

[Google Maps API v3] Re: How can i get current zoom level

2010-12-09 Thread Chad Killingsworth
in the same way that marker and infowindow are declared globally. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api...@googlegroups.com. To unsubscribe from

[Google Maps API v3] Re: Disappearing GroundOverlay at higher zoom levels

2010-12-09 Thread Chad Killingsworth
It would help if you actually posted a link to your map so we could see the problem in action ... Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api

[Google Maps API v3] Re: Private Markers

2010-12-09 Thread Chad Killingsworth
You would programatically emit different javascript based on whether the user was correctly authenticated and authorized to view the data. This will invariably require some sort of server-side technology (such as PHP). Chad Killingsworth -- You received this message because you are subscribed

[Google Maps API v3] Re: Issue combining maps with jquery script

2010-12-09 Thread Chad Killingsworth
console pane is invaluable when debugging. There are of course many other tools available as well. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api

[Google Maps API v3] Re: onClick hide/ remove markers

2010-12-09 Thread Chad Killingsworth
if it isn't working yet). Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api...@googlegroups.com. To unsubscribe from this group, send email to google-maps-js-api

[Google Maps API v3] Changing a Map with Server Side Data Based On User Criteria

2010-12-09 Thread Chad Killingsworth
more direct control over the behaviors of the objects on your map. If you have never coded a solution like this, then I recommend that you use a framework like jQuery to alleviate many of the cross-browser details for you. Good luck. Chad Killingsworth Assistant Director of Web New Media

[Google Maps API v3] Re: Disappearing GroundOverlay at higher zoom levels

2010-12-09 Thread Chad Killingsworth
Does the same in FireFox. I'm guessing that either the pixel dimensions or the memory footprint of the image simply becomes too large. I would file this as a bug: http://code.google.com/p/gmaps-api-issues/issues/entry Chad Killingsworth -- You received this message because you are subscribed

[Google Maps API v3] Re: Everything working with HTML files, changed to PHP and markers disappear..

2010-12-08 Thread Chad Killingsworth
) and we'll take a look. Chad Killingsworth -- You received this message because you are subscribed to the Google Groups Google Maps JavaScript API v3 group. To post to this group, send email to google-maps-js-api...@googlegroups.com. To unsubscribe from this group, send email to google-maps-js-api-v3

[Google Maps API v3] Re: Issue combining maps with jquery script

2010-12-08 Thread Chad Killingsworth
'); else initMap(); } - The resize event needs to be called every time the map div changes size or visibility. I've added the code to trigger the event in the ShowMap function above. That should be about it. Chad Killingsworth -- You received this message because you are subscribed to the Google

[Google Maps API v3] Re: Everything working with HTML files, changed to PHP and markers disappear..

2010-12-08 Thread Chad Killingsworth
Ahh there is the issue. You are calling genxml.php on line 40, but it is returning a 404 error. Maybe because your php map is in a different folder? Chad Killingsworth -- 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: Static maps and custom icon

2010-12-08 Thread Chad Killingsworth
I don't believe the marker URL needs to be hosted from the same domain. However, it must be publicly accessible. Localhost is definitely your problem. Chad Killingsworth -- 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: Marker DOM Object

2010-12-07 Thread Chad Killingsworth
Have you looked at some of the options available in the utility libraries? http://code.google.com/p/google-maps-utility-library-v3/wiki/Libraries Chad Killingsworth On Dec 7, 11:31 am, Albert Sun albert@wsj.com wrote: I'd like to get a reference to the DOM node of a google.maps.Marker

[Google Maps API v3] Re: v3 Map lag/sluggishness. 814 markers in zoom=8

2010-12-07 Thread Chad Killingsworth
processing takes longer than the Google servers will wait. So far, I've only seen this problem with PHP. Chad Killingsworth On Dec 7, 3:56 pm, Ryan Wood ryanwoodmi...@gmail.com wrote: Do you recommend that I instead use KML? Here is a tutorial I can use?http://code.google.com/apis/kml

[Google Maps API v3] Re: Is there a way to remove the x close button from an info window?

2010-12-03 Thread Chad Killingsworth
You sure about that? http://search.missouristate.edu/map/mobile/examples/removeclose.htm This technique won't work in Internet Explorer 7 or below. Chad Killingsworth On Dec 2, 9:30 pm, Luke Mahé lu...@google.com wrote: Hi Dan, What Larry said is correct, there currently is no way to remove

[Google Maps API v3] Re: Custom base overlay, with simple flat projection

2010-12-02 Thread Chad Killingsworth
You might take a look at the Euclidean projection referenced in this thread: http://groups.google.com/group/google-maps-js-api-v3/browse_thread/thread/50421ba5c4dd307b/ Chad Killingsworth On Dec 2, 3:39 am, Matt Roberts roberts.mattrobe...@gmail.com wrote: Hi, I'm using google map tiler

[Google Maps API v3] Re: Updating V3 Polygon Paths - Leaking Memory

2010-12-02 Thread Chad Killingsworth
The clickable links from the new forums don't translate over to the group interface. Here they are: http://www.johnmick.net/maps/v3polyupdate_method1/ http://www.johnmick.net/maps/v3polyupdate_method2/ http://www.johnmick.net/maps/v3polyupdate_method3/ Chad Killingsworth On Dec 2, 11:05 am

[Google Maps API v3] Re: How to deactivate 2.5D buildings?

2010-12-02 Thread Chad Killingsworth
Here's an example: http://search.missouristate.edu/map/mobile/examples/nobuildings.htm Chad Killingsworth On Dec 2, 7:48 am, abw arminwagner2...@gmail.com wrote: I am trying to style the ROADMAP. Is it possible to remove the grey 2.5D buildings? thnx, abw -- You received this message

  1   2   3   4   5   6   >