Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
vue-geojson-view-ts
Advanced tools
Paquete para el uso de mapas con openstreetmap y geojson con VITE & VUE
Instalacion del paquete
npm i vue-geojson-view-ts
Configuracion para la creacion de polygonos dentro del mapa
<template>
<div>
<MapView :configurationMap="configurationMap" :coordinatesMap="coordinatesMap" :getGeoJSON="getGeoJSON" :getCoodMarker="getCoodMarker"></MapView>
</div>
</template>
<script setup lang="ts">
import { MapView } from 'vue-geojson-view-ts'
import { ref } from 'vue';
const iconMarker = {
iconUrl:'/images/icon.png'.
iconSize: [25, 41],
iconAnchor: [12, 41],
}
const configurationMap = {
height:'500px',
maxZoom:19,
iconMarker,
createFigures:{
polygon: true,
circle: true,
rectangle: true,
},
editFigures:{
edit: true,
remove: true
}
}
const coordinatesMap = ref([-19.0382054,-65.2662444,13])
const getGeoJSON = (geojson:any) =>{
console.log(geojson)
}
const getCoodMarker = (lat:number,long:number) =>{
console.log(lat,long)
}
</script>
<style>
@import url(/node_modules/vue-geojson-view-ts/dist/style.css);
</style>
Configuracion para la edicion o solo vista de polygonos dentro del mapa
<template>
<div>
<MapView :loadPolygon="true" :dataPolygon="dataPolygon" :reverseCoordinatesPolygon="true" :configurationMap="configurationMap" :coordinatesMap="coordinatesMap" :getGeoJSON="getGeoJSON"></MapView>
</div>
</template>
<script setup lang="ts">
import { MapView } from 'vue-geojson-view-ts'
import { ref } from 'vue';
const iconMarker = {
iconUrl:'/images/icon.png'.
iconSize: [25, 41],
iconAnchor: [12, 41],
}
const configurationMap = {
height:'500px',
maxZoom:19,
iconMarker,
createFigures:{
polygon: true,
circle: true,
rectangle: true,
},
editFigures:{
edit: true,
remove: true
}
}
const coordinatesMap = ref([-19.0382054,-65.2662444,13])
const getGeoJSON = (geojson:any) =>{
console.log(geojson)
}
const dataPolygon = {"type":"Feature","properties":{},
"geometry":{"type":"Polygon","coordinates":[
[[-65.268488,-19.038266],[-65.25703,-19.034128],[-65.256085,-19.039361],[-65.268788,-19.043337],[-65.268488,-19.038266]]
]}}
</script>
<style>
@import url(/node_modules/vue-geojson-view-ts/dist/style.css);
</style>
Configuracion para ver si un punto esta dentro de un polygono
<template>
<div>
<CoordinatesVerifyPolygon :dataPolygon="dataPolygon" :coordinatesMap="coordinatesMap" :iconMarker="iconMarker" :checkPointInPolygon = "checkPointInPolygon"/>
</div>
</template>
<script setup lang="ts">
const iconMarker = {
iconUrl:'/images/icon.png'.
iconSize: [25, 41],
iconAnchor: [12, 41],
}
const coordinatesMap = ref([-19.0382054,-65.2662444,13])
const checkPointInPolygon = (check:Boolean) =>{
console.log(check)
}
const dataPolygon = {"type":"Feature","properties":{},
"geometry":{"type":"Polygon","coordinates":[
[[-65.268488,-19.038266],[-65.25703,-19.034128],[-65.256085,-19.039361],[-65.268788,-19.043337],[-65.268488,-19.038266]]
]}}
</script>
<style>
@import url(/node_modules/vue-geojson-view-ts/dist/style.css);
</style>
Configuracion para el uso del buscador de direcciones de googlemaps
import {listenServiceGoogleMaps} from 'vue-geojson-view-ts'
import { onMounted } from 'vue';
onMounted(() => {
listenServiceGoogleMaps()
});
<template>
<div>
<MapView :configurationMap="configurationMap" :coordinatesMap="coordinatesMap" :getGeoJSON="getGeoJSON" :getCoodMarker="getCoodMarker"></MapView>
</div>
<button @click="manualGoogleMaps">manual</button>
<button @click="automaticGoogleMaps">automatic</button>
</template>
<script setup lang="ts">
import {searchAutomaticGoogleMaps,searchManualGoogleMaps} from 'vue-geojson-view'
import { ref } from 'vue';
const coordinatesMap = ref([-19.0382054,-65.2662444,13])
const manualGoogleMaps = () =>{
searchManualGoogleMaps().then(cood =>{
coordinatesMap.value = cood
}).catch(e=>{
throw e
})
}
const automaticGoogleMaps = () =>{
searchAutomaticGoogleMaps('Santa Cruz, Bolivia').then(cood=>{
coordinatesMap.value = cood
}).catch(e=>{
throw e
})
}
</script>
FAQs
Paquete para el uso de mapas con openstreetmap y geojson con VITE & VUE
The npm package vue-geojson-view-ts receives a total of 0 weekly downloads. As such, vue-geojson-view-ts popularity was classified as not popular.
We found that vue-geojson-view-ts demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.