npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sphere-map-vue

v1.0.0

Published

sphere map component for VueJS

Downloads

9

Readme

GISTDA sphere Map VueJS

Installation

You can easily install by using npm

npm i sphere-map-vue

Usage

First, you need to get a sphere Map API key. Then, after you have sphere Map API key and component installed, you need to register it to your Vue project.

There are two ways of registering component:

Register component globally

This is a recommended way of registering component

In your main.js or similar file:

import  { createApp }  from  'vue'
import SphereMap from  'sphere-map-vue'
import App from  './App.vue'
import router from  './router'

createApp(App).use(router)
.use(SphereMap,  {
       load:  {
		apiKey:  'YOUR_SPHERE_MAP_API_KEY',
       }
})
.mount('#app')

Then you can use <sphere-map /> in your component template.

<template>
  <sphere-map />
</template>

Register component locally

In your component file, for example Foo.vue:

<script setup>
import { SphereMapLoad, SphereMap } from 'sphere-map-vue'

SphereMapLoad({
  apiKey: 'YOUR_SPHERE_MAP_API_KEY',
})
</script>

<template>
  <sphere-map />
</template>

You can import more components if you want, for example:

import { SphereMapLoad, SphereMap, SphereMapMarker, SphereMapPolyline } from 'sphere-map-vue'

Examples

Add a polygon to sphere Map:

<script setup>
const locationList = [
  { lon: 99, lat: 14 },
  { lon: 100, lat: 13 },
  { lon: 102, lat: 13 },
  { lon: 103, lat: 14 }
]
</script>

<template>
  <sphere-map>
    <sphere-map-polygon
      :location="locationList"
      :lineWidth="2"
      :lineColor="'rgba(0, 0, 0, 1)'"
      :fillColor="'rgba(255, 0, 0, 0.4)'"
    />
  </sphere-map>
</template>

Add multiple markers to sphere Map:

<template>
  <sphere-map :zoom="10" :last-view="false">
    <sphere-map-marker
      v-for="(item, i) in markers"
      :key="i"
      :location="item.location"
      :title="item.title"
      :detail="item.detail"
    />
  </sphere-map>
</template>

Using sphere Map object:

<script setup>
function loadMap(map) {
  map.Layers.setBase(sphere.Layers.NORMAL)
}
function addMarker(marker) {
  console.log(marker.location())
}
</script>

<template>
  <sphere-map @load="loadMap">
    <sphere-map-marker @add="addMarker" :location="{ lon: 99, lat: 14 }" />
  </sphere-map>
</template>

Components

Map

  • Props
  • Event: @load="Function(object)"
<sphere-map :zoom="10" :last-view="false" />

Overlay

  • Props
  • Event: @add="Function(object)"
<sphere-map>
  <sphere-map-marker :location="{ lon: 99, lat: 14 }" :title="'Home'" :detail="'My home'" />
</sphere-map>

Geometry

sphere-map-dot, sphere-map-circle, sphere-map-rectangle, sphere-map-polyline,sphere-map-polygon

  • Props
  • Event: @add="Function(object)"
<sphere-map>
  <sphere-map-polygon
    :location="[{ lon: 100.123, lat: 13.579 }, ...]"
    :lineWidth="2"
    :lineColor="'rgba(0, 0, 0, 1)'"
    :fillColor="'rgba(255, 0, 0, 0.4)'"
  />
</sphere-map>