All Projects → ilongio → ilong

ilongio / ilong

Licence: GPL-3.0 license
轻量级跨平台瓦片地图库,大部分算法来自QMapControl,就想练手的。。。因为需要轻量级跨平台的,所以只能先用SQLite数据库。。。

Programming Languages

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

Projects that are alternatives of or similar to ilong

mini-map-maker
A tool for automatically generating 3D printable STLs from freely available lidar scan data.
Stars: ✭ 51 (+112.5%)
Mutual labels:  maps, gis, qgis
QWAT
TEKSI Water module (project QWAT) - QGIS project
Stars: ✭ 52 (+116.67%)
Mutual labels:  gis, qgis
QGIS-visualization-workshop
QGIS visualization workshop materials.
Stars: ✭ 46 (+91.67%)
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 (-20.83%)
Mutual labels:  gis, qgis
Examples
Self-contained examples for the legacy Maps API for JavaScript.
Stars: ✭ 78 (+225%)
Mutual labels:  tile, maps
Mapchete
Tile-based geodata processing using rasterio & Fiona
Stars: ✭ 129 (+437.5%)
Mutual labels:  tile, gis
Atlas
An extensible 3D GIS application for visualization, analysis and research.
Stars: ✭ 113 (+370.83%)
Mutual labels:  maps, gis
Openglobus
JavaScript 3d maps and geospatial data visualization engine library.
Stars: ✭ 199 (+729.17%)
Mutual labels:  maps, gis
deck.gl-time-series-widget
A React Time Slider implementation for DECK.GL - (non)temporal data - by CPU filtering ⌛
Stars: ✭ 19 (-20.83%)
Mutual labels:  maps, gis
FreehandRasterGeoreferencer
QGIS plugin for the interactive georeferencing of rasters
Stars: ✭ 38 (+58.33%)
Mutual labels:  gis, qgis
pyGISS
📡 A lightweight GIS Software in less than 100 lines of code
Stars: ✭ 114 (+375%)
Mutual labels:  gis, geographic
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 (+87.5%)
Mutual labels:  tile, gis
Mapstore2
Modern webmapping with OpenLayers, Leaflet and React
Stars: ✭ 251 (+945.83%)
Mutual labels:  maps, gis
Tilehut
A modest, but cozy home for your map tiles
Stars: ✭ 132 (+450%)
Mutual labels:  tile, maps
Go Staticmaps
A go (golang) library and command line tool to render static map images using OpenStreetMap tiles.
Stars: ✭ 246 (+925%)
Mutual labels:  maps, gis
qgis-outdoor-map
QGIS project for an outdoor map based on OpenStreetMap data.
Stars: ✭ 20 (-16.67%)
Mutual labels:  gis, qgis
Azuremapscodesamples
A set of code samples for the Azure Maps web control.
Stars: ✭ 167 (+595.83%)
Mutual labels:  maps, gis
R Gis Tutorial
Spatial data in R: using R as a GIS
Stars: ✭ 191 (+695.83%)
Mutual labels:  maps, gis
rlayers
React Component Library for OpenLayers
Stars: ✭ 98 (+308.33%)
Mutual labels:  maps, gis
30DayMapChallenge
The official website for #30DayMapChallenge, It is a daily mapping/cartography/data visualization challenge aimed at the spatial community. Code for map submissions.
Stars: ✭ 33 (+37.5%)
Mutual labels:  maps, gis
轻量级跨平台瓦片地图库,练手项目希望有人喜欢。
简单用法:
#include <ilong.h>

ILong * iLong = new ILong(this);
//设置默认加载位置和地图等级
iLong->setDefaultLocation(QPointF(99.70875,27.82188),16);
//创建图层
QList <LayerFormat> format;
format << LayerFormat{"VALUE1",ILongNUMBER} << LayerFormat{"VALUE2",ILongTEXT};
Layer * layer = iLong->addLayer(layerName, &format);
//添加图元
Geometry::ILongDataType 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

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