diff --git a/src/components/Coordinates.vue b/src/components/Coordinates.vue index d218e6b..4253478 100644 --- a/src/components/Coordinates.vue +++ b/src/components/Coordinates.vue @@ -421,18 +421,6 @@ export default { return `https://en.mapy.cz/turisticka?x=${this.longitude}&y=${this.latitude}&z=17` } }, - { - name: 'FatMap', - url: () => { - let cameraAltitude = 10000 - if (this.altitude) { - cameraAltitude = Math.round((this.altitude * 2) * 3.28) - } else if (this.elevation) { - cameraAltitude = Math.round((this.elevation * 2) * 3.28) - } - return `https://fatmap.com/adventures/@${this.latitude},${this.longitude},${cameraAltitude},-66,-12,satellite` - } - }, { name: 'OpenStreetMap', url: () => { @@ -486,12 +474,6 @@ export default { url: () => { return `https://aprs.fi/#!lat=${this.latitude}&lng=${this.longitude}&z=14` } - }, - { - name: 'APRS Direct', - url: () => { - return `https://www.aprsdirect.com/center/${this.latitude},${this.longitude}/zoom/14` - } } ] }