mmarcon / jhere

jHERE - Maps made easy
MIT License
255 stars 51 forks source link

Setting Marker Fill Color has no effect in Internet Explorer 11 #27

Closed johnkattenhorn closed 10 years ago

johnkattenhorn commented 10 years ago

Hi,

If you set fill colour like

$.each(mapData, function(count, pin) { target.jHERE('marker', { latitude: pin.latitude, longitude: pin.longitude }, { text: pin.count, textColor: '#333333', fill: pin.fillColour, stroke: '#333333', click: function() { markerClick(pin); } }); });

The markers are rendered in black, however in FF and Chrome this works. It does however honour any changes to textColor. I've not determined yet if this is a problem with HERE or jHERE but that my next port of call.

Has anyone else seen this type of issue ?

mmarcon commented 10 years ago

Hi, sorry for the late reply – I was on holiday. I just checked, and I see the same issue.

The plain HERE API seems to work just fine though, give me some more time to figure out what is going on here.

mmarcon commented 10 years ago

Should be fixed with jHERE 0.9.0 (4be5d3623b83f0a68044d1a999fe623b697413b5).

Thanks for reporting the problem :+1: and thanks to @thingsinjars for helping with debugging it.

johnkattenhorn commented 10 years ago

That's great, thanks for looking into it.