All Projects → joyfulMaker → vue-qqmap

joyfulMaker / vue-qqmap

Licence: other
基于Vue3的腾讯地图地址可视化拾取、描点,路径规划插件

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to vue-qqmap

react-map-gl-cluster
Urbica React Cluster Component for Mapbox GL JS
Stars: ✭ 27 (+28.57%)
Mutual labels:  map
fluent-vue
Internationalization plugin for Vue.js
Stars: ✭ 137 (+552.38%)
Mutual labels:  vue3
qqmap-region
腾讯位置服务中国标准行政区划数据 SDK
Stars: ✭ 22 (+4.76%)
Mutual labels:  qqmap
fearless
A dashboard scaffolding based on Vue.js 3.x & TypeScript created by Vite.
Stars: ✭ 1,156 (+5404.76%)
Mutual labels:  vue3
nuxt3-tailwind
nuxt3 boilerplate with tailwind and dynamic routes.
Stars: ✭ 52 (+147.62%)
Mutual labels:  vue3
janak
Your next vue.js package!
Stars: ✭ 26 (+23.81%)
Mutual labels:  vue3
vue-composition-api-ts-todo
ToDo List with Vue 3 Composition API and TypeScript
Stars: ✭ 69 (+228.57%)
Mutual labels:  vue3
kerala-dashboard
Kerala COVID-19 Dashboard
Stars: ✭ 25 (+19.05%)
Mutual labels:  map
linq
A familiar set of functions that operate on JavaScript iterables (ES2015+) in a similar way to .NET's LINQ does with enumerables.
Stars: ✭ 39 (+85.71%)
Mutual labels:  map
vue
Vue integration for Nano Stores, a tiny state manager with many atomic tree-shakable stores
Stars: ✭ 25 (+19.05%)
Mutual labels:  vue3
vite-vue3-tailwind
Boilerplate at vue 3 whit firebase, vue notus, typesctip, vite, tailwind
Stars: ✭ 21 (+0%)
Mutual labels:  vue3
ExtApp
ExtApp是一个基于三层架构,使用NHibernate、API Controller和ExtJs创建的,用于简化政府和企业应用开发的Web应用程序框架。
Stars: ✭ 14 (-33.33%)
Mutual labels:  map
pdq evaluation
Evaluation code for using probabilistic detection quality (PDQ) measure for probabilistic object detection tasks. Currently supports COCO and robotic vision challenge (RVC) data.
Stars: ✭ 34 (+61.9%)
Mutual labels:  map
vue3-oop
使用类和依赖注入写vue组件
Stars: ✭ 90 (+328.57%)
Mutual labels:  vue3
papyruscs
PapyrusCS renders maps of Minecraft: Bedrock Edition worlds using C#, LevelDB and leaflet.
Stars: ✭ 221 (+952.38%)
Mutual labels:  map
vue3-manjaro-ui
网页版Manjaro。A simulation webpage for Manjaro Linux(KDE Plasma).
Stars: ✭ 109 (+419.05%)
Mutual labels:  vue3
mapgen
map generator stuff
Stars: ✭ 26 (+23.81%)
Mutual labels:  map
seal-vue
本项目为 https://github.com/hequan2017/seal 项目 前端vue版本 基于 iview-admin 2.5.0 支持 动态菜单 本项目已停止开发!因长时间未对代码进行维护,可能会造成项目在不同环境上无法部署、运行BUG等问题,请知晓!项目仅供参考!
Stars: ✭ 16 (-23.81%)
Mutual labels:  vue3
map-keys-deep-lodash
Map/rename keys recursively with Lodash
Stars: ✭ 16 (-23.81%)
Mutual labels:  map
aaf-easyphotomap
📷 Easy Photo Map is a photomap application that displays the location of the photo on the map using the location information included in the photo.
Stars: ✭ 36 (+71.43%)
Mutual labels:  map

vue-qqmap

Tencent Map Plugin for Vue 3.x

Shorter Name:vqqmap

Vue3 - based Tencent map visual pick up, tracing points, path planning plug-in

Languages

Results show

DEMO

Features

  1. Simple and easy to use, light and beautiful
  2. Support native map all configuration
  3. More features will be provided in the future

If you like , please give me star,thanks!

If you have some question , please submit issues!

Installation

With npm

$ npm install vue-qqmap

Typical use:

<vqqmap v-model="location" @update="mapChange" :options="options"></vqqmap>
  ...
  import vqqmap from 'vue-qqmap'
  ...
  export default defineComponent({
      components: { vqqmap },
      setup() {
        let location = reactive({lat:'',lng:'',address:''})
        let options= reactive({
          key:'Yours Key',
        })
        function mapChange(data){
          console.log(data)
        }
        return {
          location,
          options,
          mapChange
        };
  },
});
  ...

v-model

Type: Object|Array
Required: true
Default: {lat:'',lng:'',address?:''}|[{lat:'',lng:'',address?:''},{lat:'',lng:'',address?:''}]

props

You can send these props to the component

multiple

Type: Boolean
Required: false
Default: false
if you want to set multiple marks,should open it

options

In addition to the following configuration, you can also use all Tencent Map Options

key

Type: String
Required: true
No Key, go apply?

width

Type: String,Number
Required: false
Default: 700

height

Type: Number
Required: false
Default: 400

showHeader

Type: Boolean
Required: false
Default: true

showFooter

Type: Boolean
Required: false
Default: true

showBorder

Type: Boolean
Required: false
Default: true

zoom

Type: Number
Required: false
Default: 12.2

disabledClick

Type: Boolean
Required: false
Default: false

Of course,you can use other tencent map options, look more!

Events

update Triggered when coordinates and addresses change

blog

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].