Google Maps - How to remove lines - google-maps

I am trying to turn off main lines (grid map) in google maps api for web, but I do not know how to do. I was trying to set borders to 0, but it still display on map.
Thank you in advance for help.

I think this is a bug with the latest version of Chrome. It happens on my site http://www.shortwave.am as well but only on the newest Chrome version and not Chrome 33.0.1750.154 or Firefox.

Related

Current location spot on Google maps on iphone ios7 looks strange

I have two apps both using the newest version of google maps sdk 1.4.0
There's a weird issue I'm seeing on ios7 where the user's current location is surrounded by a white square (see image below)
I'm not really doing any funky things with the map, just that pin image over the map. Any ideas how to fix this?
It's a known issue on Simalutor. Both iOS 7 and 8.
Works fine on real devices.
You can check the issue in google maps api bug tracker here.

Google maps markers not displayed in Chrome

Since the latest version of Chrome (27.0.1453.93 m / Windows 7) Google map markers in the Chrome browser will no longer be displayed. In IE10 and Firefox everything works fine.
Example (Google code samples):
https://developers.google.com/maps/documentation/javascript/examples/marker-simple
Is the problem is known and is there a solution?
This is no longer an issue as problem already solved as I check again today (2013-09-11), with latest version of Chrome ( 29.0.1547.66 m)

Google maps v3: MarkerImage not scaled in IE 8

I'm working on a map where I display markers with a custom image.
The images are displayed correctly, but for some reason when opening the site in IE8 the images aren't resized accordingly.
My images are 64x64px and I want them to be 24x24px.
This is the code I'm using:
var icon = new google.maps.MarkerImage(iconUrl);
icon.size = new google.maps.Size(24,24);
icon.scaledSize = new google.maps.Size(24,24);
var marker = new google.maps.Marker({ position: position, title: title, icon: icon });
marker.setMap(mb.map.mapObject);
It works perfectly on Chrome, but IE8 simply ignores the scaledSize property.
I've also tried using the constructor, but I get the same results.
Has anyone seen this problem before? is it a known bug? what can I do besides hacking the CSS and setting the size there.
Thanks!
EDIT: I just tested it on IE9 and it works with no problems.
I realized the same problem today when using IE8. MarkerImages are not scaled anymore... I have already sent a bug report to Google.
Possible Workaround: Try to use an older version of Google Maps (not the current version 3.7). Here is the code: <script type="text/javascript" src="http://maps.google.com/maps/api/js?v=3.6&sensor=false"></script>
Please file a bug over on our issue tracker:
http://code.google.com/p/gmaps-api-issues
Also, please post a reply to this answer once you do file it, so I can track the bug.
I ran across this today in Chrome for Mac too. Going back to 3.6 fixed it for now. This is definitely a bug. I submitted it to google too.

Bing maps with world spanning polygons not working in IE7 and IE8

I have an application using Bing Maps that draws polygons on a map. For most polygons, the system works fine, and shows the shape correct. However, with huge polygons (covering almost the entire planet), I get errors in IE7 and IE8. The errors are related to a setSize method within the map script (veapicore.js). The map works correctly in IE9 and FF (still working on Chrome). The page is [http://data.nbr.org/Mapping/chinamissilerange]. The first two checkboxes work fine, the third is where the problem is (803 Brigade Base 55).
I can't figure out what could be causing the problem. Does anyone know what this issue could be?
Thanks,
Erick
I have solved this question. It turns out that IE7 and IE8 have issues with this particular API when everything isn't finished loading. Moving the map javascript to $(window).load fixed the issue.

Google maps issue when zooming (Firefox and IE)

I have a problem with google maps. Zooming is not smooth in FF and IE (in Chrome works well)
Could you please check this google demo (Problem is also reproducible here.):
http://code.google.com/apis/maps/documentation/javascript/examples/places-autocomplete.html
Is there any way to make it smooth?
UPDATE:
I have found a solution. I set my app to use v=3.4 version of google map api. Zooming is smooth now.