01-17-2013 10:56 AM - edited 01-17-2013 10:57 AM
i ran in the same problem a couple of day ago.
it seems that google try to optimize the map draw / redraw and that it's not working (at least on bb browser , i have'nt tried on another platform ) when the pin is between 2 map tiles.
i have not a complete explanation.
01-17-2013 10:59 AM - edited 01-17-2013 11:59 AM
hey Chad, i m the Vince who have problem with streetView,, any clue ? it's my last problem before submiting the app ![]()
I m fighting with google maps for a week
)
01-17-2013 11:32 AM
01-17-2013 01:39 PM
For testing, I'm just creating the marker using default options without specifying an icon/markerimage and comparing to other platforms so the icon you're seeing in the shots is the default render.
01-17-2013 02:20 PM
as a workaround I used my own icon to control the size... but it's far from perfect.
01-17-2013 02:28 PM
so I'm pretty convinced this is a marker scale issue. Either the BB OS is ignoring the png ppm value and not scaling it correctly or gmaps is misbehaving and doesn't know what to do with the BB user agent and is screwing with the marker placement/size.
Anyway, I'm managed to work around the issue and now have my custom marker rendering correctly (size and position). You still need to disable marker optimization but the key change I made is to scale up by png's manually in the markerimage constructor. My markers are all 32x37 so given the dev alphas pixel ratio of around 2.2 I'm creating my marker images using
var myicon = new google.maps.MarkerImage("myicon.png", null, null, null, new google.maps.Size(70, 80));
This renders pretty well
01-20-2013 03:13 PM
I switched to leaflet which can manage high density screen. you can specify another icon for high resolution (retinaIcon)
01-21-2013 01:41 PM
I had been doing some tests, and asking around to office. Nothing's changed on our end that should be affecting this (was the general consensus).
In my map samples I just pull everything from Google's server. My recommendation for now is to use Bing, or another service. No answer as to why the pins are suddenly not scaling.
01-22-2013 05:55 AM
Hi Chad
If you check the Bing rendering you'll see this suffers the same issue with tiny default markers. A few months ago a change was made to bbui to have it automatically detect and apply the correct viewport settings.
https://github.com/blackberry/bbUI.js/commit/b9e92
Here's some comparison shots of different devices. These are all based on your maps sample app 'tweaked so that I could get it to render on other devices". Both iOS and Android shots are done with
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
iOS (iphone 4S)
:
Android (Nexus 4)
BB10 with default settings (i.e.bbui setting viewport to initial-scale=0.4938271372370243)
BB10 with <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
For user supplied graphics such as the bbui controls, reducing the scale gets around the device dpi issues associated with rescaling of images. Tthe different map providers don't take this into account though therefore tiles/zoom controls/markers/etc... effectively get scaled down by 2+x as a result of this bbui change.
Thoughts?