diff --git a/src/public/app/widgets/type_widgets/geo_map.ts b/src/public/app/widgets/type_widgets/geo_map.ts
index d5157301d..2f625d738 100644
--- a/src/public/app/widgets/type_widgets/geo_map.ts
+++ b/src/public/app/widgets/type_widgets/geo_map.ts
@@ -178,11 +178,12 @@ export default class GeoMapTypeWidget extends TypeWidget {
const [ lat, lng ] = latLng.split(",", 2).map((el) => parseFloat(el));
const icon = L.divIcon({
html: `\
-
-
-
- ${childNote.title}
- `,
+
+
+
+
+ ${childNote.title}
+ `,
iconSize: [ 25, 41 ],
iconAnchor: [ 12, 41 ]
})
@@ -194,7 +195,6 @@ export default class GeoMapTypeWidget extends TypeWidget {
autoPanSpeed: 5,
})
.addTo(map)
- .bindPopup(childNote.title)
.on("moveend", e => {
this.moveMarker(childNote.noteId, (e.target as Marker).getLatLng());
});