All Projects → dvgis → Cesium Map

dvgis / Cesium Map

Licence: apache-2.0
Cesium 地图插件,用于添加国内各大地图厂商的地图🌎

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Cesium Map

Dc Sdk
DC-SDK 是基于 Cesium 进行二次开发的2、3D一体 WebGis 应用框架,该框架优化了 Cesium 的使用方式和增添了一些额外功能,旨在为开发者快速构建 WebGis 应用。🌎
Stars: ✭ 206 (+157.5%)
Mutual labels:  google, baidu, cesium
Ssssrv2rayclashtrojan
科学上网,ss, ssr, v2ray, trojan, clash, clashr,翻墙机场推荐
Stars: ✭ 186 (+132.5%)
Mutual labels:  google, baidu
Xinahn Socket
一个开源,高隐私,自架自用的聚合搜索引擎。 https://xinahn.com
Stars: ✭ 77 (-3.75%)
Mutual labels:  google, baidu
Sitedorks
Search Google/Bing/Ecosia/DuckDuckGo/Yandex/Yahoo for a search term with a default set of websites, bug bounty programs or a custom collection.
Stars: ✭ 221 (+176.25%)
Mutual labels:  google, baidu
Xiaoai
a tiny&smart AI & Repo for work for AI Survey百度云资源持续更新中,欢迎点赞star Min's blog 欢迎访问我的博客主页!(Welcome to my blog website !)https://liweimin1996.github.io/
Stars: ✭ 111 (+38.75%)
Mutual labels:  google, baidu
Mtrans
Multi-source Translation
Stars: ✭ 711 (+788.75%)
Mutual labels:  google, baidu
Jsearch
jSearch(聚搜) 是一款专注内容的chrome搜索扩展,一次搜索聚合多平台内容。
Stars: ✭ 193 (+141.25%)
Mutual labels:  google, baidu
Alfred Web Search Suggest
Alfred search suggest workflow for various popular websites.
Stars: ✭ 249 (+211.25%)
Mutual labels:  google, baidu
Sou
简单搜索,一个简单的前端界面。用惯了各种导航首页,满屏幕尽是各种不厌其烦的广告和资讯;尝试自己写个自己的主页。
Stars: ✭ 628 (+685%)
Mutual labels:  google, baidu
Translators
🌏🌍🌎Translators🌎🌍🌏 is a library which aims to bring free, multiple, enjoyable translation to individuals and students in Python. Translators是一个旨在用Python为个人和学生带来免费、多样、愉快翻译的库。
Stars: ✭ 295 (+268.75%)
Mutual labels:  google, baidu
Python Pisces
A tools to search for and download images by keywords using search engines: google/baidu/yahoo/bing. 使用google等搜索引擎搜索关键词并下载图片
Stars: ✭ 60 (-25%)
Mutual labels:  google, baidu
Socialite
Socialite is an OAuth2 Authentication tool. It is inspired by laravel/socialite, you can easily use it without Laravel.
Stars: ✭ 1,026 (+1182.5%)
Mutual labels:  google, baidu
Image Downloader
Download images from Google, Bing, Baidu. 谷歌、百度、必应图片下载.
Stars: ✭ 1,173 (+1366.25%)
Mutual labels:  google, baidu
Userscripts
Userscripts for Greasemonkey, Tampermonkey etc.
Stars: ✭ 78 (-2.5%)
Mutual labels:  google
Php Sdk
百度AI开放平台 PHP SDK
Stars: ✭ 81 (+1.25%)
Mutual labels:  baidu
Tensorflowexample
Tensorflow实例
Stars: ✭ 78 (-2.5%)
Mutual labels:  google
Social Login Helper Deprecated
A simple android library to easily implement social login into your android project
Stars: ✭ 81 (+1.25%)
Mutual labels:  google
Metasearch
Search aggregator for Slack, Google Docs, GitHub, and more 🔍
Stars: ✭ 81 (+1.25%)
Mutual labels:  google
Google cursor
🍭 Cursor theme inspired on Google
Stars: ✭ 78 (-2.5%)
Mutual labels:  google
Gso
🏃 Google StackOverflow in Vim. Copy-pastes the code directly in your script.
Stars: ✭ 75 (-6.25%)
Mutual labels:  google

cesium-map

Cesium 地图插件,用于添加国内各大地图厂商的地图

 使用前引入 Cesium 框架

安装

CDN

<script src="cesium-map/cesium.map.min.js"></script>

NPM / YARN

npm install @dvgis/cesium-map
yarn add @dvgis/cesium-map
require('@dvgis/cesium-map/build/cesium-map/cesium.map.min')  // 2.2.0 版本前

require('@dvgis/cesium-map/build/cesium.map.min') // 2.2.0 版本及以后

BaiduImageryProvider

百度地图

var options = {
  style: 'normal', // style: img、vec、normal、dark
  crs: 'WGS84' // 使用84坐标系,默认为:BD09
}
viewer.imageryLayers.addImageryProvider(
  new Cesium.BaiduImageryProvider(options)
)

TencentImageryProvider

腾讯地图

var options = {
  style: 1 //style: img、1:经典
}

viewer.imageryLayers.addImageryProvider(
  new Cesium.TencentImageryProvider(options)
)

TdtImageryProvider

天地图

var options = {
  style: 'vec', //style: img、vec、vca、ter
  key: ''
}
viewer.imageryLayers.addImageryProvider(new Cesium.TdtImageryProvider(options))

AmapImageryProvider

高德地图

var options = {
  style: 'img', // style: img、elec
  crs: 'WGS84' // 使用84坐标系,默认为:GCJ02
}
viewer.imageryLayers.addImageryProvider(new Cesium.AmapImageryProvider(options))

GoogleImageryProvider

谷歌地图

var options = {
  style: 'img' //style: img、elec、ter
}
viewer.imageryLayers.addImageryProvider(
  new Cesium.GoogleImageryProvider(options)
)

示例

http://dc.dvgis.cn

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].