From: Anthony Talarico Date: Tue, 23 Apr 2019 15:01:52 +0000 (-0400) Subject: adding lake huron to the county map dropdown X-Git-Tag: v1.0.0^2~3 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=54712ba9eecc862c2c6e90c43a74dfcb1590597b;p=WP-Plugins%2Fglm-member-db-county-map.git adding lake huron to the county map dropdown --- diff --git a/views/front/map/display.html b/views/front/map/display.html index dfd3c80..e9189c5 100644 --- a/views/front/map/display.html +++ b/views/front/map/display.html @@ -143,17 +143,23 @@ // }) // }).addTo(countyMap); - new L.Marker([46.8, -87.3], { + new L.Marker([46.7, -87.3], { icon: new L.DivIcon({ className: 'my-div-icon', - html: 'Lake Superior' + html: 'Lake Superior' + }) + }).addTo(countyMap); + new L.Marker([45.67, -84.3], { + icon: new L.DivIcon({ + className: 'my-div-icon', + html: 'Lake Huron' }) }).addTo(countyMap); new L.Marker([45.85, -86.30], { icon: new L.DivIcon({ className: 'my-div-icon', - html: 'Lake Michigan' + html: 'Lake Michigan' }) }).addTo(countyMap);