diff --git a/image/forts/img_pokestop_lure.png b/image/forts/img_pokestop_lure.png new file mode 100644 index 0000000..d1d6294 Binary files /dev/null and b/image/forts/img_pokestop_lure.png differ diff --git a/js/main.js b/js/main.js index 10ab923..1033fd7 100644 --- a/js/main.js +++ b/js/main.js @@ -891,6 +891,14 @@ var mapView = { infowindow.open(map, marker); }; })(self.forts[fort.id], contentString, self.info_windows[fort.id])); + } else { + if (fort.type == 1) { + if ('lure_info' in fort) { + self.forts[fort.id].setIcon('image/forts/img_pokestop_lure.png'); + } else { + self.forts[fort.id].setIcon('image/forts/img_pokestop.png'); + } + } } } }