All Projects → Charmatzis → react-leaflet-bing

Charmatzis / react-leaflet-bing

Licence: MIT license
Bing layer as React component for Leaflet | This repo is obsolete. Plz, use https://github.com/TA-Geoforce/react-leaflet-bing

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to react-leaflet-bing

Bing Upyun
轻量必应每日一图API,支持上传至又拍云调用,支持图片处理(高斯模糊、灰阶),支持回溯。
Stars: ✭ 179 (+1276.92%)
Mutual labels:  bing
geogrid.js
Leaflet plugin for Visualizing Discrete Global Grid Systems
Stars: ✭ 37 (+184.62%)
Mutual labels:  leaflet
uranus
[W.I.P] An ecosystem of crawlers for detecting: leaks, sensitive data exposure and attempts exfiltration of data
Stars: ✭ 22 (+69.23%)
Mutual labels:  bing
Idt
Image Dataset Tool (idt) is a cli tool designed to make the otherwise repetitive and slow task of creating image datasets into a fast and intuitive process.
Stars: ✭ 202 (+1453.85%)
Mutual labels:  bing
echarty
Minimal R/Shiny Interface to ECharts.js
Stars: ✭ 49 (+276.92%)
Mutual labels:  leaflet
leaflet.migrationLayer
Migration data visualization on map
Stars: ✭ 125 (+861.54%)
Mutual labels:  leaflet
Osmdeepod
OSMDeepOD - OpenStreetMap (OSM) and Machine Learning (Deep Learning) based Object Detection from Aerial Imagery (Formerly also known as "OSM-Crosswalk-Detection").
Stars: ✭ 174 (+1238.46%)
Mutual labels:  bing
leaflet-defaulticon-compatibility
Retrieve all Leaflet Default Icon options from CSS, in particular all icon images URL's, to improve compatibility with bundlers and frameworks that modify URL's in CSS.
Stars: ✭ 71 (+446.15%)
Mutual labels:  leaflet
wp-plugin-trackserver
A WordPress plugin for GPS tracking and publishing
Stars: ✭ 34 (+161.54%)
Mutual labels:  leaflet
leaflet-velocity
Visualise velocity data on a leaflet layer
Stars: ✭ 467 (+3492.31%)
Mutual labels:  leaflet
Search Engine Parser
Lightweight package to query popular search engines and scrape for result titles, links and descriptions
Stars: ✭ 216 (+1561.54%)
Mutual labels:  bing
maptiles
Map tile generator. Converts an image into map tiles using ImageMagick. Map tiles can be used in Google Maps, Leaflet and other map rendering software.
Stars: ✭ 52 (+300%)
Mutual labels:  leaflet
txt2speech
Convert text to speech using Google Translate API
Stars: ✭ 38 (+192.31%)
Mutual labels:  bing
Jsearch
jSearch(聚搜) 是一款专注内容的chrome搜索扩展,一次搜索聚合多平台内容。
Stars: ✭ 193 (+1384.62%)
Mutual labels:  bing
objmap
Breath of the Wild object map
Stars: ✭ 61 (+369.23%)
Mutual labels:  leaflet
Msmarco
Utilities, Baselines, Statistics and Descriptions Related to the MSMARCO DATASET
Stars: ✭ 175 (+1246.15%)
Mutual labels:  bing
fishfrymap
Fish Fry Map project repository
Stars: ✭ 14 (+7.69%)
Mutual labels:  leaflet
OoT-Interactive-Map
Interactive Map for the world of Zelda: Ocarina of Time
Stars: ✭ 22 (+69.23%)
Mutual labels:  leaflet
Leaflet Cluster Example
🗺 Example of using the clustering plugin with Leaflet
Stars: ✭ 26 (+100%)
Mutual labels:  leaflet
rainviewer-api-example
How to use RainViewer API: simple HTML + JS code which render an animated weather radar overlay on the map
Stars: ✭ 56 (+330.77%)
Mutual labels:  leaflet

react-leaflet-bing npm version

Bing layer as React component for Leaflet build on top of React-Leaflet.

Bing example

Getting started

import { Map,  TileLayer, LayersControl } from 'react-leaflet'
import {BingLayer} from '../src'
const { BaseLayer } = LayersControl;

...
const bing_key = "YOUR-BING-KEY"
...

<BaseLayer checked name='Bing Maps Roads'>
  <BingLayer  bingkey={bing_key} type="Road"/>
</BaseLayer>
<BaseLayer checked name='Bing Maps Satelite'>
    <BingLayer  bingkey={bing_key} />
</BaseLayer>
<BaseLayer checked name='Bing Maps Satelite with Labels'>
    <BingLayer  bingkey={bing_key} type="AerialWithLabels" />
</BaseLayer>

Options

option type default
subdomains array [0, 1, 2, 3]
type string One of the following values:
  • Aerial– Aerial imagery.
  • AerialWithLabels –Aerial imagery with a road overlay.
  • AerialWithLabelsOnDemand - Aerial imagery with on-demand road overlay.
  • CanvasDark - A dark version of the road maps.
  • - CanvasLight - A lighter version of the road maps which also has some of the details such as hill shading disabled.
  • CanvasGray - A grayscale version of the road maps.
  • Road – Roads without additional imagery.
see: https://msdn.microsoft.com/en-us/library/ff701724.aspx
'Aerial'
attribution string 'Bing'
culture string for supported culture codes see: https://msdn.microsoft.com/en-us/library/hh441729.aspx ''
style string REST style parameters see: https://msdn.microsoft.com/en-us/library/mt823636.aspx#Related%20Resources ''

For more details on how to use this plugin check the example.

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