All Projects → UIDO → UMapControl

UIDO / UMapControl

Licence: GPL-2.0 license
轻量级跨平台瓦片地图库

Programming Languages

C++
36643 projects - #6 most used programming language
QMake
1090 projects

Projects that are alternatives of or similar to UMapControl

Tiledmapview
Tiled map loader for Android , based on the pyramid model, supports a variety of projections, including Web Mercator projection, latitude and longitude projection and custom projection; supports locating, adding layers and overlays. Android瓦片地图加载控件,基于金字塔模型,支持多种投影,包括Web墨卡托投影,经纬度直投及自定义投影等;支持定位,添加图层和覆盖物。
Stars: ✭ 45 (+28.57%)
Mutual labels:  map, gis, tilemap
Go Staticmaps
A go (golang) library and command line tool to render static map images using OpenStreetMap tiles.
Stars: ✭ 246 (+602.86%)
Mutual labels:  map, gis, tilemap
FreehandRasterGeoreferencer
QGIS plugin for the interactive georeferencing of rasters
Stars: ✭ 38 (+8.57%)
Mutual labels:  gis, qgis
mini-map-maker
A tool for automatically generating 3D printable STLs from freely available lidar scan data.
Stars: ✭ 51 (+45.71%)
Mutual labels:  gis, qgis
geologic-symbols-qgis
Geologic symbols library and development for QGIS
Stars: ✭ 63 (+80%)
Mutual labels:  gis, qgis
QWAT
TEKSI Water module (project QWAT) - QGIS project
Stars: ✭ 52 (+48.57%)
Mutual labels:  gis, qgis
qgis-outdoor-map
QGIS project for an outdoor map based on OpenStreetMap data.
Stars: ✭ 20 (-42.86%)
Mutual labels:  gis, qgis
font-gis
Icon font and SVG for use with GIS and spatial analysis tools
Stars: ✭ 121 (+245.71%)
Mutual labels:  map, gis
Openglobus
JavaScript 3d maps and geospatial data visualization engine library.
Stars: ✭ 199 (+468.57%)
Mutual labels:  map, gis
farmOS-map
farmOS Map is an OpenLayers wrapper library designed for agricultural mapping needs. It can be used in any project that has similar requirements.
Stars: ✭ 18 (-48.57%)
Mutual labels:  map, gis
ilong
轻量级跨平台瓦片地图库,大部分算法来自QMapControl,就想练手的。。。因为需要轻量级跨平台的,所以只能先用SQLite数据库。。。
Stars: ✭ 24 (-31.43%)
Mutual labels:  gis, qgis
ExtApp
ExtApp是一个基于三层架构,使用NHibernate、API Controller和ExtJs创建的,用于简化政府和企业应用开发的Web应用程序框架。
Stars: ✭ 14 (-60%)
Mutual labels:  map, gis
QGIS-visualization-workshop
QGIS visualization workshop materials.
Stars: ✭ 46 (+31.43%)
Mutual labels:  gis, qgis
gis-for-geoscientists
Repository for "GIS for Geoscientists" workshop series. This repo contains data, protocols, outputs, lectures, and resources used the workshop. Course taught by Nicholas Barber. Available for future booking upon request! Contact me ([email protected]) for a quote.
Stars: ✭ 19 (-45.71%)
Mutual labels:  gis, qgis
Ol3echarts
🌏 📊 ol3Echarts | a openlayers extension to echarts
Stars: ✭ 229 (+554.29%)
Mutual labels:  map, gis
conrex
An Elixir implementation of the CONREC algorithm for topographic or isochrone maps.
Stars: ✭ 52 (+48.57%)
Mutual labels:  map, gis
speckle-qgis
QGIS Connector for Speckle 2.0
Stars: ✭ 17 (-51.43%)
Mutual labels:  gis, qgis
Awesome Gis
😎Awesome GIS is a collection of geospatial related sources, including cartographic tools, geoanalysis tools, developer tools, data, conference & communities, news, massive open online course, some amazing map sites, and more.
Stars: ✭ 2,582 (+7277.14%)
Mutual labels:  map, gis
L7
🌎 Large-scale WebGL-powered Geospatial Data Visualization analysis framework which relies on Mapbox GL or AMap to render basemaps.
Stars: ✭ 2,517 (+7091.43%)
Mutual labels:  map, gis
Atlas
An extensible 3D GIS application for visualization, analysis and research.
Stars: ✭ 113 (+222.86%)
Mutual labels:  gis, tilemap
轻量级跨平台瓦片地图库
简单用法:
#include <UMapControl.h>

UMapControl * uMap = new UMapControl(this);
//创建图层
QList <UM::Format> format;
format << UM::Format{"VALUE1",UMapN} << UM::Format{"VALUE2",UMapT};
Layer * layer = uMap->addLayer(layerName, &format);
//添加图元
Geometry::DataType t;
t.geometry = new GeoCircle(QPointF(99.70875,27.82188) /* ,80,pen,brush */ );
t.data << value1 << value2;
layer->addGeo(t);
delete t.geometry;
//也可以用layer->addGeos批量添加图元
//现在只有GeoCircle,GeoRect,GeoPie,GeoStar,GeoTri,GeoPolygon
//GeoPolygon图元用来支持多边形和线条,现在基本用不到,暂时这样设计
//文字图元的话并不想加进去,如果真需要,可以放一个图元显示图元标就可以
截图

image image

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