Skip to content

Commit

Permalink
Remove tooltip from map
Browse files Browse the repository at this point in the history
  • Loading branch information
wkramer committed Sep 30, 2024
1 parent 3ef2bc7 commit 4b0b297
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 52 deletions.
12 changes: 0 additions & 12 deletions src/components/spatialdisplay/SpatialDisplayComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
</MapComponent>
<div class="mapcomponent__controls-container">
<v-chip-group class="control-group">
<TooltipPanel v-if="tooltip" :content="tooltip" />
<BoundingBoxControl
v-model:active="workflowsStore.isDrawingBoundingBox"
v-model:boundingBox="workflowsStore.boundingBox"
Expand Down Expand Up @@ -162,8 +161,6 @@ import {
} from '@/lib/legend'
import { useWorkflowsStore } from '@/stores/workflows'
import { TimeSeriesData } from '@/lib/timeseries/types/SeriesData'
import { useLocationTooltip } from '@/services/useLocationTooltip'
import TooltipPanel from '@/components/wms/TooltipPanel.vue'
import CoordinateSelectorLayer from '@/components/wms/CoordinateSelectorLayer.vue'
import CoordinateSelectorControl from '@/components/map/CoordinateSelectorControl.vue'
Expand Down Expand Up @@ -432,15 +429,6 @@ watch(currentTime, () => {
emit('update:currentTime', currentTime.value)
})
const { tooltip } = useLocationTooltip(baseUrl, () =>
props.filterIds.length && props.locationId
? {
filterId: props.filterIds[0],
locationId: props.locationId,
}
: undefined,
)
function setLayerOptions(): void {
if (props.layerName) {
layerOptions.value = {
Expand Down
40 changes: 0 additions & 40 deletions src/components/wms/TooltipPanel.vue

This file was deleted.

0 comments on commit 4b0b297

Please sign in to comment.