Posted in StackOverflow.
--
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/-/zEN1UT0HxGsJ.
To post to this group, send email to googl
Since I only have a restriction on V3 in my api registration:
https://maps.googleapis.com/maps/api/js?v=3&libraries=geometry&sensor=true";
type="text/javascript">
The solution defaults to the latested. Today Google Maps API was updated to
version 3.8. Now my marker touch sensitivity on my
Don't know of a simple way but one way is to remove the layers and
rebuild them in the order you want.
On Jan 31, 4:27 am, orkun wrote:
> hello
>
> how can I adjust order of layers programmaticaly ?
>
> regards
--
You received this message because you are subscribed to the Google Groups
"Googl
Actually my BIG question is how to determine if a line crosses a road
and what point the crossing is. If I knew the point on the line
crossed I could use the reverse Geocode API to determine the road name
and address.
On Jan 21, 2:40 pm, Chris C <1952m...@gmail.com> wrote:
> I would l
I would like to be able to query a road that has a line segment of my
creation overlaying it. For example if constructed a line on a map
and it intersected two roads, could I get the names of the roads that
it crossed?
--
You received this message because you are subscribed to the Google Groups
OK. It turns out this does work. I was not able to tell because there is a
current bug in Mobile Safari on iOS5 that is caching javascript even when
you clear the cache. I had to reset the device to fix another error and
just retested this now.
panes.overlayMouseTarget.appendChild(div);
Fi
That was a good idea but it did not resolve the problem.
Any other thoughts?
On Nov 4, 6:09 pm, "Enoch Lau (Google Employee)"
wrote:
> You've put the div into the overlayImage pane. Try putting it into the
> overlayMouseTarget pane instead.
>
> Enoch
--
You received this message because you ar
http://www.aesculusca.com/custommarker.html
Modified from the overlayview sample. Under Safari or Chrome load the
above sample and then click Add Marker. When the blue dot shows click
on the dot. A popup will show 'Hi'.
This event will not fire in IOS (iPad, iPhone or iPod Touch).
--
You rece
This appears to be resolved but no formal announcement of that from
Google.
On Aug 29, 12:05 am, Chris C <1952m...@gmail.com> wrote:
> Nothing to report on this yet? The maps are unusable on higher
> resolution mobile platforms.
>
> We all have to revert to version 3.5 in order
Its the same in all geographies, not just S Korea.
On Aug 20, 6:22 pm, Andrei Tchijov wrote:
> Try to open example from tutorial on iPhone 4
>
> http://code.google.com/apis/maps/documentation/javascript/examples/ma...
>
> and go to South Korea. At zoom level 7 and higher, you supposed to see
> r
Nothing to report on this yet? The maps are unusable on higher
resolution mobile platforms.
We all have to revert to version 3.5 in order to see the street
labels.
On Aug 20, 10:21 am, Enoch Lau wrote:
> Thanks for reporting this - we'll take a look.
>
> Enoch
--
You received this message beca
They are aware of it. You can set your version to 3.5 until its
fixed.
On Aug 27, 8:54 pm, JC wrote:
> Hi, I am building a web and have no problem before, But recently I
> found the font on the map obviously shrinking.
> Testing on htc desire hd(android 2.33), iphone4(4.3) has same problem,
> ip
The latest version of Maps API V3.6 introduces a scaling factor for
the background maps which results in a font too small to be seen on an
iPhone 4.
I noticed that static maps now has a scaling attribute to deal with
this. I found nothing in the new documentation to help resolve this
problem.
See
is variable at all?
>
> Cheers,
> Will
>
> On Aug 20, 1:05 am, Chris C <1952m...@gmail.com> wrote:
>
>
>
> > I tried the scale=2 on the js load for google maps api and did not have any
> > effect. Not surprising since its not documented. I guess we will have
I tried the scale=2 on the js load for google maps api and did not have any
effect. Not surprising since its not documented. I guess we will have to
wait for Google to update their tile engine to remove this 'feature'
--
You received this message because you are subscribed to the Google Groups
Yes as I pointed out in my post it does this on all versions of 3 for me.
--
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/-/uvQBV88J
I have the same question. This week I cannot read my maps on the iPhone 4.
But all versions of Google Maps seem to behave this way now, not just V3.6
--
You received this message because you are subscribed to the Google Groups
"Google Maps JavaScript API v3" group.
To view this discussion on t
This problem was related to jqTouch.js. The fix for this can be
located here:
http://groups.google.com/group/jqtouch/browse_thread/thread/94f3ca81181aa28d
--
You received this message because you are subscribed to the Google Groups
"Google Maps JavaScript API v3" group.
To post to this group,
The problem appears to be that if the map is not shown yet, adding
markers with click events will fail the addListener. They will not
respond to the click event.
Setting the draggable: true solves the problem but that of course
results in the wrong behavior.
This was noted in this entry a few day
Thank you, thank you, thank you. I have been struggling with this all
day long.
I think its a new bug in the March 2nd addition. It happens on the
Windows version of Safari too. I will post a problem report and list
this item and my entry with it.
On Mar 2, 3:14 pm, "m@uce" wrote:
> Oops. Fo
For what its worth here is the function that loads my markers in the
simplest form with one marker:
function loadWeatherMarkers() {
var $src = 'http://maps.google.com/mapfiles/shadow50.png';
var imageShw = new g.MarkerImage($src,
new g.Size(37, 34),
new g.
ocode...@gmail.com"
wrote:
> On Mar 5, 1:35 pm, Chris C <1952m...@gmail.com> wrote:
>
>
>
>
>
> > Up until the March 4 Javascript update my event listeners have been
> > working fine:
>
> > markers[i] = new g.Marker(
> > { positio
Up until the March 4 Javascript update my event listeners have been
working fine:
markers[i] = new g.Marker(
{ position: myLatlng,
icon: image,
shadow:imageShw,
map: map,
draggable: false
});
markers[i].event = g.event.addListener(markers[i], 'click',
functi
OK. I built a little mini app with some iPhone specifics and it works
fine. Not sure why the test that Chris B put up on the sandbox did not
work for me. I will amend my issue to say its resolved.
This was my mini app
html { height: 100% }
Luke. Read my reponse. My iPad and IPod touch do not work with the
example Chris provided. If you have an IOS device you can test too.
http://code.google.com/apis/ajax/playground/#event_simple_v3
On Oct 12, 3:15 pm, Luke Mahé wrote:
> Chris C
>
> As Chris said, from his tests he c
Chris Broadfoot: Any feedback from you on the iPad and iPod touch not
generating the map click event? This is the last element for me to
finish a large mobile application and I would like to know if its
obtainable or if I need to make other plans (if possible).
On Oct 8, 3:19 pm, Chris C <19
it worked fine.
>
> Could you please provide a an example with minimal code necessary to
> demonstrate the issue.
>
> Chris
>
>
>
> On Fri, Oct 8, 2010 at 4:03 PM, Chris C <1952m...@gmail.com> wrote:
> > For security reasons I cannot provide a link but this
m, "Susannah (Google Employee)"
wrote:
> Hi Chris,
>
> Please provide a link the page where you are seeing this problem.
>
> Thanks,
> Susannah
>
> On Oct 8, 11:16 am, Chris C <1952m...@gmail.com> wrote:
>
>
>
> > I have tried to get the AddList
I have tried to get the AddListener event to work on an iTouch device
with the map click. It works for zoom_changed and also I can get click
events to work for markers, just not the map click event.
I opened up issue 2765
http://code.google.com/p/gmaps-api-issues/issues/detail?id=2765
--
You re
I have a more fundamental issue. For some reason I cannot even get the
click event to fire when I touch the map with V3 and the iPod Touch.
I can get markers to fire OK.
As far as the wrong lat/long: Can you just change the offset for now
when you create the marker to fit your algorithm?
--
You
30 matches
Mail list logo