├── .directory ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── GeoViewer ├── common │ ├── geodatacontainer.h │ ├── geounitmanager.h │ ├── mapenums.h │ └── mapstructures.h ├── components │ ├── geobrowsercomponent.h │ ├── geocomponent.h │ └── geolayerscomponent.h ├── items │ ├── geocolorizepathitem.h │ ├── geoitem.h │ ├── geomarkeritem.h │ ├── geomultipositionItem.h │ ├── geosectoritem.h │ ├── geosimplemarkeritem.h │ └── geotextitem.h ├── mapwidget.h ├── tools │ ├── geo2positionitemtool.h │ ├── geomeasuretool.h │ └── geomultipositiontool.h └── widgets │ └── geomapcanvas.h ├── README.md ├── qgis ├── qgsbrowserdirectorypropertiesbase.ui ├── qgsbrowserdockwidgetbase.ui ├── qgsbrowserlayerpropertiesbase.ui ├── qgsbrowserpropertiesdialogbase.ui ├── qgsdatumtransformdialogbase.ui ├── qgsxyzconnection.cpp ├── qgsxyzconnection.h ├── qgsxyzconnectiondialog.cpp ├── qgsxyzconnectiondialog.h └── qgsxyzconnectiondialog.ui ├── qrc └── images │ ├── CMakeLists.txt │ ├── composer │ └── missing_image.svg │ ├── flags │ ├── af.svg │ ├── ar.svg │ ├── bg.svg │ ├── bn.svg │ ├── bs.svg │ ├── ca.svg │ ├── cs.svg │ ├── cy.svg │ ├── da.svg │ ├── de.svg │ ├── el.svg │ ├── en_GB.svg │ ├── en_US.svg │ ├── eo.svg │ ├── es.svg │ ├── et.svg │ ├── eu.svg │ ├── fa.svg │ ├── fi.svg │ ├── fr.svg │ ├── ga.svg │ ├── gd.svg │ ├── gl.svg │ ├── he.svg │ ├── hi.svg │ ├── hr.svg │ ├── hu.svg │ ├── id.svg │ ├── is.svg │ ├── it.svg │ ├── ja.svg │ ├── ka.svg │ ├── km.svg │ ├── ko.svg │ ├── ky.svg │ ├── lo.svg │ ├── lt.svg │ ├── lv.svg │ ├── ml.svg │ ├── mn.svg │ ├── mr.svg │ ├── mt.svg │ ├── nb.svg │ ├── nl.svg │ ├── pl.svg │ ├── pt_BR.svg │ ├── pt_PT.svg │ ├── ro.svg │ ├── ru.svg │ ├── sk.svg │ ├── sl.svg │ ├── sq.svg │ ├── sr.svg │ ├── sv.svg │ ├── sw.svg │ ├── ta.svg │ ├── te.svg │ ├── th.svg │ ├── tl.svg │ ├── tr.svg │ ├── uk.svg │ ├── vi.svg │ ├── xh.svg │ ├── zh-Hans.svg │ ├── zh-Hant.svg │ └── zh.svg │ ├── icons │ ├── CMakeLists.txt │ ├── mac │ │ ├── CMakeLists.txt │ │ ├── asc.icns │ │ ├── ddf.icns │ │ ├── dem.icns │ │ ├── dt0.icns │ │ ├── dxf.icns │ │ ├── gml.icns │ │ ├── img.icns │ │ ├── jp2.icns │ │ ├── mif.icns │ │ ├── mldata.icns │ │ ├── qgis.icns │ │ ├── qgs.icns │ │ ├── qgs.psd │ │ ├── qlr.icns │ │ ├── qml.icns │ │ ├── qpt.icns │ │ ├── shp.icns │ │ ├── sqlite.icns │ │ └── tiff.icns │ ├── qbrowser-icon.png │ ├── qbrowser_icon.svg │ ├── qgis-icon-16x16.png │ ├── qgis-icon-512x512.png │ ├── qgis-icon-60x60.png │ ├── qgis-icon-macos.png │ ├── qgis-mime-icon.png │ ├── qgis_asc_icon.svg │ ├── qgis_ddf_icon.svg │ ├── qgis_dem_icon.svg │ ├── qgis_dt0_icon.svg │ ├── qgis_dxf_icon.svg │ ├── qgis_gml_icon.svg │ ├── qgis_icon.svg │ ├── qgis_img_icon.svg │ ├── qgis_jp2_icon.svg │ ├── qgis_mif_icon.svg │ ├── qgis_mime_icon.svg │ ├── qgis_mldata_icon.svg │ ├── qgis_qgs_icon.svg │ ├── qgis_qlr_icon.svg │ ├── qgis_qml_icon.svg │ ├── qgis_qpt_icon.svg │ ├── qgis_shp_icon.svg │ ├── qgis_sqlite_icon.svg │ ├── qgis_tif_icon.svg │ └── sponsor_medals │ │ ├── 2010 │ │ ├── bronze_medal_2010.png │ │ ├── gold_medal_2010.png │ │ ├── platin_medal_2010.png │ │ └── silver_medal_2010.png │ │ ├── 2011 │ │ ├── bronze_medal_1.xcf │ │ ├── bronze_medal_2011.png │ │ ├── gold_medal_1.xcf │ │ ├── gold_medal_2011.png │ │ ├── platin_medal_1.xcf │ │ ├── platin_medal_2011.png │ │ ├── silver_medal_1.xcf │ │ └── silver_medal_2011.png │ │ └── README │ ├── images.qrc │ ├── north_arrows │ ├── default.png │ ├── default.svg │ ├── gpsarrow.svg │ └── gpsarrow2.svg │ ├── qgis_tips │ └── symbol_levels.png │ ├── splash │ ├── README_FONTS │ ├── README_SPLASH │ ├── dev-splash.png │ ├── splash.png │ ├── splash_mask.png │ └── web_banner.jpg │ ├── svg │ ├── CMakeLists.txt │ ├── accommodation │ │ ├── accommodation_alpinehut.svg │ │ ├── accommodation_bed_and_breakfast.svg │ │ ├── accommodation_camping.svg │ │ ├── accommodation_caravan_park.svg │ │ ├── accommodation_hotel.svg │ │ ├── accommodation_hotel2.svg │ │ ├── accommodation_house.svg │ │ ├── accommodation_shelter.svg │ │ ├── accommodation_shelter2.svg │ │ └── accommodation_youth_hostel.svg │ ├── amenity │ │ ├── amenity_bench.svg │ │ ├── amenity_court.svg │ │ ├── amenity_firestation.svg │ │ ├── amenity_firestation2.svg │ │ ├── amenity_firestation3.svg │ │ ├── amenity_fountain.svg │ │ ├── amenity_information.svg │ │ ├── amenity_library.svg │ │ ├── amenity_police.svg │ │ ├── amenity_police2.svg │ │ ├── amenity_post_box.svg │ │ ├── amenity_post_office.svg │ │ ├── amenity_prison.svg │ │ ├── amenity_recycling.svg │ │ ├── amenity_survey_point.svg │ │ ├── amenity_telephone.svg │ │ ├── amenity_toilets.svg │ │ ├── amenity_toilets_disabled.svg │ │ ├── amenity_toilets_men.svg │ │ ├── amenity_toilets_women.svg │ │ └── amenity_waste_bin.svg │ ├── arrows │ │ ├── Arrow_01.svg │ │ ├── Arrow_02.svg │ │ ├── Arrow_03.svg │ │ ├── Arrow_04.svg │ │ ├── Arrow_05.svg │ │ ├── Arrow_06.svg │ │ ├── NorthArrow_01.svg │ │ ├── NorthArrow_02.svg │ │ ├── NorthArrow_03.svg │ │ ├── NorthArrow_04.svg │ │ ├── NorthArrow_05.svg │ │ ├── NorthArrow_06.svg │ │ ├── NorthArrow_07.svg │ │ ├── NorthArrow_08.svg │ │ ├── NorthArrow_09.svg │ │ ├── NorthArrow_10.svg │ │ └── NorthArrow_11.svg │ ├── backgrounds │ │ ├── background_circle.svg │ │ ├── background_forbidden.svg │ │ ├── background_octogon.svg │ │ ├── background_safety.svg │ │ ├── background_security.svg │ │ ├── background_security_02.svg │ │ ├── background_square.svg │ │ ├── background_square_rounded.svg │ │ ├── background_tilted_square.svg │ │ ├── background_tilted_square_rounded.svg │ │ └── background_triangle.svg │ ├── components │ │ └── component_indoor.svg │ ├── crosses │ │ ├── Cross1.svg │ │ ├── Cross2.svg │ │ ├── Cross4.svg │ │ ├── Cross5.svg │ │ ├── Cross6.svg │ │ ├── Star1.svg │ │ ├── Star2.svg │ │ └── Star3.svg │ ├── emergency │ │ ├── amenity=fire_station.svg │ │ ├── amenity=hospital.svg │ │ └── amenity=police.svg │ ├── entertainment │ │ ├── amenity=bar.svg │ │ ├── amenity=cafe.svg │ │ ├── amenity=cinema.svg │ │ ├── amenity=fast_food.svg │ │ ├── amenity=pub.svg │ │ ├── amenity=restaurant.svg │ │ └── amenity=theatre.svg │ ├── food │ │ ├── food_bar.svg │ │ ├── food_cafe.svg │ │ ├── food_drinkingtap.svg │ │ ├── food_fastfood.svg │ │ ├── food_fastfood2.svg │ │ ├── food_pub.svg │ │ └── food_restaurant.svg │ ├── gpsicons │ │ ├── anchor.svg │ │ ├── bank.svg │ │ ├── boat.svg │ │ ├── camera.svg │ │ ├── car.svg │ │ ├── city_building.svg │ │ ├── city_large.svg │ │ ├── city_medium.svg │ │ ├── city_small.svg │ │ ├── conveneince.svg │ │ ├── couple.svg │ │ ├── cross.svg │ │ ├── deer.svg │ │ ├── dollar.svg │ │ ├── fish.svg │ │ ├── flag.svg │ │ ├── food.svg │ │ ├── gas.svg │ │ ├── golf.svg │ │ ├── h.svg │ │ ├── house.svg │ │ ├── parachute.svg │ │ ├── parking.svg │ │ ├── phone.svg │ │ ├── plane.svg │ │ ├── plane_orange.svg │ │ ├── point.svg │ │ ├── question.svg │ │ ├── shipwreck.svg │ │ ├── skier.svg │ │ ├── skull.svg │ │ ├── swimmer.svg │ │ ├── table.svg │ │ ├── teepee.svg │ │ ├── tree.svg │ │ ├── walker.svg │ │ └── waypoint.svg │ ├── health │ │ ├── health_dentist.svg │ │ ├── health_doctors.svg │ │ ├── health_hospital.svg │ │ ├── health_hospital_emergency.svg │ │ ├── health_hospital_emergency2.svg │ │ ├── health_opticians.svg │ │ ├── health_pharmacy.svg │ │ └── health_veterinary.svg │ ├── landmark │ │ ├── amenity=place_of_worship.svg │ │ ├── amenity=school.svg │ │ ├── religion=buddhist.svg │ │ ├── religion=christian.svg │ │ ├── religion=hindu.svg │ │ ├── religion=jewish.svg │ │ ├── religion=muslim.svg │ │ ├── religion=pastafarian.svg │ │ ├── religion=sikh.svg │ │ └── tourism=museum.svg │ ├── money │ │ ├── money_atm.svg │ │ ├── money_atm2.svg │ │ ├── money_bank2.svg │ │ └── money_currency_exchange.svg │ ├── religion │ │ ├── place_of_worship.svg │ │ ├── place_of_worship_bahai.svg │ │ ├── place_of_worship_bahai3.svg │ │ ├── place_of_worship_buddhist.svg │ │ ├── place_of_worship_buddhist3.svg │ │ ├── place_of_worship_christian.svg │ │ ├── place_of_worship_christian3.svg │ │ ├── place_of_worship_hindu.svg │ │ ├── place_of_worship_hindu3.svg │ │ ├── place_of_worship_islamic.svg │ │ ├── place_of_worship_islamic3.svg │ │ ├── place_of_worship_jain.svg │ │ ├── place_of_worship_jain3.svg │ │ ├── place_of_worship_jewish.svg │ │ ├── place_of_worship_jewish3.svg │ │ ├── place_of_worship_pastafarian.svg │ │ ├── place_of_worship_shinto.svg │ │ ├── place_of_worship_shinto3.svg │ │ ├── place_of_worship_sikh.svg │ │ ├── place_of_worship_sikh3.svg │ │ └── place_of_worship_unknown3.svg │ ├── services │ │ ├── amenity=atm.svg │ │ ├── amenity=pharmacy,dispensing=yes.svg │ │ ├── amenity=pharmacy.svg │ │ ├── amenity=post_box.svg │ │ ├── amenity=recycling.svg │ │ ├── amenity=telephone.svg │ │ ├── shop=convenience.svg │ │ ├── shop=supermarket.svg │ │ └── tourism=hotel.svg │ ├── shopping │ │ ├── shopping_alcohol.svg │ │ ├── shopping_bakery.svg │ │ ├── shopping_bicycle.svg │ │ ├── shopping_book.svg │ │ ├── shopping_butcher.svg │ │ ├── shopping_car.svg │ │ ├── shopping_car_repair.svg │ │ ├── shopping_clothes.svg │ │ ├── shopping_confectionery.svg │ │ ├── shopping_convenience.svg │ │ ├── shopping_diy.svg │ │ ├── shopping_estateagent.svg │ │ ├── shopping_estateagent2.svg │ │ ├── shopping_fish.svg │ │ ├── shopping_garden_centre.svg │ │ ├── shopping_gift.svg │ │ ├── shopping_greengrocer.svg │ │ ├── shopping_hairdresser.svg │ │ ├── shopping_hifi.svg │ │ ├── shopping_jewelry.svg │ │ ├── shopping_laundrette.svg │ │ ├── shopping_mobile_phone.svg │ │ ├── shopping_motorcycle.svg │ │ ├── shopping_music.svg │ │ ├── shopping_pet.svg │ │ ├── shopping_pet2.svg │ │ ├── shopping_photo.svg │ │ ├── shopping_supermarket.svg │ │ ├── shopping_tackle.svg │ │ └── shopping_video_rental.svg │ ├── sport │ │ ├── sport_archery.svg │ │ ├── sport_baseball.svg │ │ ├── sport_cricket.svg │ │ ├── sport_diving.svg │ │ ├── sport_golf.svg │ │ ├── sport_gym.svg │ │ ├── sport_gymnasium.svg │ │ ├── sport_gymnasium2.svg │ │ ├── sport_hillclimbing.svg │ │ ├── sport_horse_racing.svg │ │ ├── sport_iceskating.svg │ │ ├── sport_jetski.svg │ │ ├── sport_leisure_centre.svg │ │ ├── sport_motorracing.svg │ │ ├── sport_playground.svg │ │ ├── sport_sailing.svg │ │ ├── sport_skiing_crosscountry.svg │ │ ├── sport_skiing_downhill.svg │ │ ├── sport_snooker.svg │ │ ├── sport_soccer.svg │ │ ├── sport_swimming_indoor.svg │ │ ├── sport_swimming_outdoor.svg │ │ ├── sport_tennis.svg │ │ └── sport_windsurfing.svg │ ├── symbol │ │ ├── blue-marker.svg │ │ ├── disability_accessibility.svg │ │ ├── disability_accessibility2.svg │ │ ├── disability_lowvision.svg │ │ ├── education_nursery.svg │ │ ├── education_school.svg │ │ ├── education_university.svg │ │ ├── fountain.svg │ │ ├── landuse_coniferous.svg │ │ ├── landuse_coniferous_and_deciduous.svg │ │ ├── landuse_deciduous.svg │ │ ├── landuse_grass.svg │ │ ├── landuse_hills.svg │ │ ├── landuse_quary.svg │ │ ├── landuse_scrub.svg │ │ ├── landuse_swamp.svg │ │ ├── poi_boundary_administrative.svg │ │ ├── poi_cave.svg │ │ ├── poi_embassy.svg │ │ ├── poi_embassy2.svg │ │ ├── poi_military_bunker.svg │ │ ├── poi_mine.svg │ │ ├── poi_mine_abandoned.svg │ │ ├── poi_peak.svg │ │ ├── poi_place_city.svg │ │ ├── poi_place_town.svg │ │ ├── poi_place_village.svg │ │ ├── poi_point_of_interest.svg │ │ ├── poi_tower_communications.svg │ │ ├── poi_tower_power.svg │ │ ├── poi_tower_water.svg │ │ ├── red-marker.svg │ │ └── water_tower.svg │ ├── tourist │ │ ├── tourist_archaeological.svg │ │ ├── tourist_archaeological2.svg │ │ ├── tourist_art_gallery.svg │ │ ├── tourist_art_gallery2.svg │ │ ├── tourist_battlefield.svg │ │ ├── tourist_beach.svg │ │ ├── tourist_casino.svg │ │ ├── tourist_castle.svg │ │ ├── tourist_cinema.svg │ │ ├── tourist_cinema2.svg │ │ ├── tourist_fountain.svg │ │ ├── tourist_memorial.svg │ │ ├── tourist_monument.svg │ │ ├── tourist_museum.svg │ │ ├── tourist_picnic.svg │ │ ├── tourist_ruin.svg │ │ ├── tourist_steam_train.svg │ │ ├── tourist_theatre.svg │ │ ├── tourist_view_point.svg │ │ ├── tourist_waterwheel.svg │ │ ├── tourist_windmill.svg │ │ ├── tourist_wreck.svg │ │ ├── tourist_zoo.svg │ │ └── tourisum_fountain.svg │ ├── transport │ │ ├── amenity=airport.svg │ │ ├── amenity=ferry_terminal.svg │ │ ├── amenity=parking.svg │ │ ├── amenity=taxi.svg │ │ ├── barrier_bollard.svg │ │ ├── barrier_enterance.svg │ │ ├── barrier_gate.svg │ │ ├── barrier_lift_gate.svg │ │ ├── barrier_stile.svg │ │ ├── barrier_toll_booth.svg │ │ ├── highway=bus_stop.svg │ │ ├── railway=station.svg │ │ ├── transport_aerodrome.svg │ │ ├── transport_aerodrome2.svg │ │ ├── transport_airport.svg │ │ ├── transport_airport2.svg │ │ ├── transport_bus_station.svg │ │ ├── transport_bus_stop.svg │ │ ├── transport_bus_stop2.svg │ │ ├── transport_car_share.svg │ │ ├── transport_ford.svg │ │ ├── transport_fuel.svg │ │ ├── transport_fuel_lpg.svg │ │ ├── transport_lighthouse.svg │ │ ├── transport_marina.svg │ │ ├── transport_parking.svg │ │ ├── transport_parking_bicycle.svg │ │ ├── transport_parking_car.svg │ │ ├── transport_parking_car_paid.svg │ │ ├── transport_parking_disabled.svg │ │ ├── transport_parking_private.svg │ │ ├── transport_parking_private2.svg │ │ ├── transport_parking_private3.svg │ │ ├── transport_port.svg │ │ ├── transport_rental_bicycle.svg │ │ ├── transport_rental_car.svg │ │ ├── transport_roundabout_anticlockwise.svg │ │ ├── transport_roundabout_clockwise.svg │ │ ├── transport_taxi_rank.svg │ │ ├── transport_traffic_lights.svg │ │ ├── transport_train_station.svg │ │ ├── transport_train_station2.svg │ │ └── transport_tram_stop.svg │ └── wind_roses │ │ ├── WindRose_01.svg │ │ └── WindRose_02.svg │ └── themes │ ├── CMakeLists.txt │ └── default │ ├── 3d.svg │ ├── CMakeLists.txt │ ├── LICENSE.TXT │ ├── algorithms │ ├── mAlgorithmAddGeometryAttributes.svg │ ├── mAlgorithmBasicStatistics.svg │ ├── mAlgorithmBuffer.svg │ ├── mAlgorithmCentroids.svg │ ├── mAlgorithmCheckGeometry.svg │ ├── mAlgorithmClip.svg │ ├── mAlgorithmCollect.svg │ ├── mAlgorithmConcaveHull.svg │ ├── mAlgorithmConvexHull.svg │ ├── mAlgorithmCreateGrid.svg │ ├── mAlgorithmDelaunay.svg │ ├── mAlgorithmDifference.svg │ ├── mAlgorithmDissolve.svg │ ├── mAlgorithmDistanceMatrix.svg │ ├── mAlgorithmExtractLayerExtent.svg │ ├── mAlgorithmExtractVertices.svg │ ├── mAlgorithmIntersect.svg │ ├── mAlgorithmLineIntersections.svg │ ├── mAlgorithmLineToPolygon.svg │ ├── mAlgorithmMeanCoordinates.svg │ ├── mAlgorithmMergeLayers.svg │ ├── mAlgorithmMultiToSingle.svg │ ├── mAlgorithmNearestNeighbour.svg │ ├── mAlgorithmNetworkAnalysis.svg │ ├── mAlgorithmPolygonToLine.svg │ ├── mAlgorithmRandomPointsWithinExtent.svg │ ├── mAlgorithmRandomPointsWithinPolygon.svg │ ├── mAlgorithmRegularPoints.svg │ ├── mAlgorithmSelectLocation.svg │ ├── mAlgorithmSelectRandom.svg │ ├── mAlgorithmSimplify.svg │ ├── mAlgorithmSingleToMulti.svg │ ├── mAlgorithmSplitLayer.svg │ ├── mAlgorithmSumLengthLines.svg │ ├── mAlgorithmSumPoints.svg │ ├── mAlgorithmSymmetricalDifference.svg │ ├── mAlgorithmUnion.svg │ ├── mAlgorithmUniqueValues.svg │ └── mAlgorithmVoronoi.svg │ ├── cadtools │ ├── cad.svg │ ├── construction.svg │ ├── delta.svg │ ├── lock.svg │ ├── parallel.svg │ └── perpendicular.svg │ ├── cap_flat.svg │ ├── cap_round.svg │ ├── cap_square.svg │ ├── console │ ├── classBrowserHelp.png │ ├── consoleHelp.png │ ├── editorHelp.png │ ├── iconClassBrowserConsole.svg │ ├── iconClassConsole.svg │ ├── iconClassTreeWidgetConsole.svg │ ├── iconClearConsole.svg │ ├── iconCodepadConsole.svg │ ├── iconCommentEditorConsole.svg │ ├── iconFileTabsMenuConsole.svg │ ├── iconFunctionTreeWidgetConsole.svg │ ├── iconHelpConsole.svg │ ├── iconHideToolConsole.svg │ ├── iconMethodTreeWidgetConsole.svg │ ├── iconNewTabEditorConsole.svg │ ├── iconProcessingConsole.svg │ ├── iconQtCoreConsole.svg │ ├── iconQtGuiConsole.svg │ ├── iconRestoreTabsConsole.svg │ ├── iconSearchEditorConsole.svg │ ├── iconSearchNextEditorConsole.svg │ ├── iconSearchPrevEditorConsole.svg │ ├── iconSettingsConsole.svg │ ├── iconShowEditorConsole.svg │ ├── iconSyntaxErrorConsole.svg │ ├── iconTabEditorConsole.svg │ ├── iconUncommentEditorConsole.svg │ └── mIconRunConsole.svg │ ├── copyright_label.svg │ ├── cursors │ ├── mCapturePoint.svg │ ├── mCrossHair.svg │ ├── mIdentify.svg │ ├── mSampler.svg │ ├── mSelect.svg │ ├── mZoomIn.svg │ └── mZoomOut.svg │ ├── dbmanager.svg │ ├── dependencies.svg │ ├── diagramNone.svg │ ├── downloading_svg.svg │ ├── extents.svg │ ├── gpsicons │ ├── barchart.svg │ └── polarchart.svg │ ├── grass_location.svg │ ├── grass_mapset.svg │ ├── grass_mapset_open.svg │ ├── grass_mapset_search.svg │ ├── heatmap.svg │ ├── histogram.svg │ ├── icon_template18x18.xcf │ ├── icon_template22x22.xcf │ ├── join_bevel.svg │ ├── join_miter.svg │ ├── join_round.svg │ ├── labelingNone.svg │ ├── labelingObstacle.svg │ ├── labelingRuleBased.svg │ ├── labelingSingle.svg │ ├── legend.svg │ ├── locked.svg │ ├── lockedGray.svg │ ├── locked_repeating.svg │ ├── mAction.svg │ ├── mActionActive.svg │ ├── mActionAdd.svg │ ├── mActionAdd3DMap.svg │ ├── mActionAddAfsLayer.svg │ ├── mActionAddAllToOverview.svg │ ├── mActionAddAmsLayer.svg │ ├── mActionAddArrow.svg │ ├── mActionAddBasicCircle.svg │ ├── mActionAddBasicRectangle.svg │ ├── mActionAddBasicShape.svg │ ├── mActionAddBasicTriangle.svg │ ├── mActionAddDb2Layer.svg │ ├── mActionAddDelimitedTextLayer.svg │ ├── mActionAddGeoPackageLayer.svg │ ├── mActionAddGeonodeLayer.svg │ ├── mActionAddGroup.svg │ ├── mActionAddHtml.svg │ ├── mActionAddImage.svg │ ├── mActionAddLayer.svg │ ├── mActionAddLegend.svg │ ├── mActionAddMap.svg │ ├── mActionAddMeshLayer.svg │ ├── mActionAddMssqlLayer.svg │ ├── mActionAddNodesItem.svg │ ├── mActionAddOgrLayer.svg │ ├── mActionAddOracleLayer.svg │ ├── mActionAddPart.svg │ ├── mActionAddPolygon.svg │ ├── mActionAddPolyline.svg │ ├── mActionAddPostgisLayer.svg │ ├── mActionAddRasterLayer.svg │ ├── mActionAddRing.svg │ ├── mActionAddSpatiaLiteLayer.svg │ ├── mActionAddTable.svg │ ├── mActionAddVirtualLayer.svg │ ├── mActionAddWcsLayer.svg │ ├── mActionAddWfsLayer.svg │ ├── mActionAddWmsLayer.svg │ ├── mActionAlignBottom.svg │ ├── mActionAlignHCenter.svg │ ├── mActionAlignLeft.svg │ ├── mActionAlignRight.svg │ ├── mActionAlignTop.svg │ ├── mActionAlignVCenter.svg │ ├── mActionAllEdits.svg │ ├── mActionAnnotation.svg │ ├── mActionArrowDown.svg │ ├── mActionArrowLeft.svg │ ├── mActionArrowRight.svg │ ├── mActionArrowUp.svg │ ├── mActionAtlasFirst.svg │ ├── mActionAtlasLast.svg │ ├── mActionAtlasNext.svg │ ├── mActionAtlasPrev.svg │ ├── mActionAtlasSettings.svg │ ├── mActionCalculateField.svg │ ├── mActionCancelAllEdits.svg │ ├── mActionCancelEdits.svg │ ├── mActionCaptureLine.svg │ ├── mActionCapturePoint.svg │ ├── mActionCapturePolygon.svg │ ├── mActionChangeLabelProperties.svg │ ├── mActionCircle2Points.svg │ ├── mActionCircle2TangentsPoint.svg │ ├── mActionCircle3Points.svg │ ├── mActionCircle3Tangents.svg │ ├── mActionCircleCenterPoint.svg │ ├── mActionCircleExtent.svg │ ├── mActionCircularStringCurvePoint.svg │ ├── mActionCircularStringRadius.svg │ ├── mActionCollapseTree.svg │ ├── mActionComposerManager.svg │ ├── mActionConditionalFormatting.svg │ ├── mActionContextHelp.png │ ├── mActionCreateMemory.svg │ ├── mActionCreateTable.svg │ ├── mActionCustomProjection.svg │ ├── mActionDataSourceManager.svg │ ├── mActionDecreaseBrightness.svg │ ├── mActionDecreaseContrast.svg │ ├── mActionDecreaseFont.svg │ ├── mActionDeleteAttribute.svg │ ├── mActionDeletePart.svg │ ├── mActionDeleteRing.svg │ ├── mActionDeleteSelected.svg │ ├── mActionDeleteTable.svg │ ├── mActionDeselectAll.svg │ ├── mActionDistributeBottom.svg │ ├── mActionDistributeHCenter.svg │ ├── mActionDistributeLeft.svg │ ├── mActionDistributeRight.svg │ ├── mActionDistributeTop.svg │ ├── mActionDistributeVCenter.svg │ ├── mActionDuplicateComposer.svg │ ├── mActionDuplicateFeature.svg │ ├── mActionDuplicateFeatureDigitized.svg │ ├── mActionDuplicateLayer.svg │ ├── mActionDuplicateLayout.svg │ ├── mActionEditCopy.svg │ ├── mActionEditCut.svg │ ├── mActionEditHelpContent.svg │ ├── mActionEditNodesItem.svg │ ├── mActionEditPaste.svg │ ├── mActionEditTable.svg │ ├── mActionEllipseCenter2Points.svg │ ├── mActionEllipseCenterPoint.svg │ ├── mActionEllipseExtent.svg │ ├── mActionEllipseFoci.svg │ ├── mActionExpandNewTree.svg │ ├── mActionExpandTree.svg │ ├── mActionExport.svg │ ├── mActionFileExit.svg │ ├── mActionFileNew.svg │ ├── mActionFileOpen.svg │ ├── mActionFilePrint.svg │ ├── mActionFileSave.svg │ ├── mActionFileSaveAs.svg │ ├── mActionFillRing.svg │ ├── mActionFilter.svg │ ├── mActionFilter2.svg │ ├── mActionFilterTableFields.svg │ ├── mActionFindReplace.svg │ ├── mActionFolder.svg │ ├── mActionFormAnnotation.svg │ ├── mActionFormView.svg │ ├── mActionFromSelectedFeature.svg │ ├── mActionFullCumulativeCutStretch.svg │ ├── mActionFullHistogramStretch.svg │ ├── mActionGroupItems.svg │ ├── mActionHelpAbout.svg │ ├── mActionHelpContents.svg │ ├── mActionHelpSponsors.png │ ├── mActionHideAllLayers.svg │ ├── mActionHideDeselectedLayers.svg │ ├── mActionHideSelectedLayers.svg │ ├── mActionHighlightFeature.svg │ ├── mActionHistory.svg │ ├── mActionHtmlAnnotation.svg │ ├── mActionIconView.svg │ ├── mActionIdentify.svg │ ├── mActionIdentifyByFreehand.svg │ ├── mActionIdentifyByPolygon.svg │ ├── mActionIdentifyByRadius.svg │ ├── mActionIdentifyByRectangle.svg │ ├── mActionInOverview.svg │ ├── mActionIncreaseBrightness.svg │ ├── mActionIncreaseContrast.svg │ ├── mActionIncreaseFont.svg │ ├── mActionInterfaceCustomization.svg │ ├── mActionInvertSelection.svg │ ├── mActionKeyboardShortcuts.svg │ ├── mActionLabel.svg │ ├── mActionLabeling.svg │ ├── mActionLayoutManager.svg │ ├── mActionLink.svg │ ├── mActionLocalCumulativeCutStretch.svg │ ├── mActionLocalHistogramStretch.svg │ ├── mActionLockExtent.svg │ ├── mActionLockItems.svg │ ├── mActionLowerItems.svg │ ├── mActionMapIdentification.svg │ ├── mActionMapSettings.svg │ ├── mActionMapTips.svg │ ├── mActionMeasure.svg │ ├── mActionMeasureAngle.svg │ ├── mActionMeasureArea.svg │ ├── mActionMergeFeatureAttributes.svg │ ├── mActionMergeFeatures.svg │ ├── mActionMoveFeature.svg │ ├── mActionMoveFeatureCopy.svg │ ├── mActionMoveFeatureCopyLine.svg │ ├── mActionMoveFeatureCopyPoint.svg │ ├── mActionMoveFeatureLine.svg │ ├── mActionMoveFeaturePoint.svg │ ├── mActionMoveItemContent.svg │ ├── mActionMoveItemsToBottom.svg │ ├── mActionMoveItemsToTop.svg │ ├── mActionMoveLabel.svg │ ├── mActionMoveVertex.svg │ ├── mActionMultiEdit.svg │ ├── mActionNew3DMap.svg │ ├── mActionNewAttribute.svg │ ├── mActionNewBookmark.svg │ ├── mActionNewComposer.svg │ ├── mActionNewGeoPackageLayer.svg │ ├── mActionNewLayout.svg │ ├── mActionNewMap.svg │ ├── mActionNewPage.svg │ ├── mActionNewReport.svg │ ├── mActionNewSpatiaLiteLayer.svg │ ├── mActionNewTableRow.svg │ ├── mActionNewVectorLayer.svg │ ├── mActionOffsetCurve.svg │ ├── mActionOffsetPointSymbols.svg │ ├── mActionOpenTable.svg │ ├── mActionOptions.svg │ ├── mActionPan.svg │ ├── mActionPanHighlightFeature.svg │ ├── mActionPanToSelected.svg │ ├── mActionPinLabels.svg │ ├── mActionProcessSelected.svg │ ├── mActionProjectProperties.svg │ ├── mActionPropertiesWidget.svg │ ├── mActionPropertyItem.svg │ ├── mActionQgisHomePage.png │ ├── mActionRaiseItems.svg │ ├── mActionRectangle3Points.svg │ ├── mActionRectangleCenter.svg │ ├── mActionRectangleExtent.svg │ ├── mActionRedo.svg │ ├── mActionRefresh.svg │ ├── mActionRegularPolygon2Points.svg │ ├── mActionRegularPolygonCenterCorner.svg │ ├── mActionRegularPolygonCenterPoint.svg │ ├── mActionReload.svg │ ├── mActionRemove.svg │ ├── mActionRemoveAllFromOverview.svg │ ├── mActionRemoveLayer.svg │ ├── mActionRemoveSelectedFeature.svg │ ├── mActionReshape.svg │ ├── mActionResizeNarrowest.svg │ ├── mActionResizeShortest.svg │ ├── mActionResizeSquare.svg │ ├── mActionResizeTallest.svg │ ├── mActionResizeWidest.svg │ ├── mActionReverseLine.svg │ ├── mActionRollbackAllEdits.svg │ ├── mActionRollbackEdits.svg │ ├── mActionRotateFeature.svg │ ├── mActionRotateLabel.svg │ ├── mActionRotatePointSymbols.svg │ ├── mActionSaveAllEdits.svg │ ├── mActionSaveAsPDF.svg │ ├── mActionSaveAsPython.svg │ ├── mActionSaveAsSVG.svg │ ├── mActionSaveEdits.svg │ ├── mActionSaveMapAsImage.svg │ ├── mActionScaleBar.svg │ ├── mActionScaleHighlightFeature.svg │ ├── mActionScriptOpen.svg │ ├── mActionSelect.svg │ ├── mActionSelectAll.svg │ ├── mActionSelectAllTree.svg │ ├── mActionSelectFreehand.svg │ ├── mActionSelectPan.svg │ ├── mActionSelectPolygon.svg │ ├── mActionSelectRadius.svg │ ├── mActionSelectRectangle.svg │ ├── mActionSelectedToTop.svg │ ├── mActionSetProjection.svg │ ├── mActionSharing.svg │ ├── mActionSharingExport.svg │ ├── mActionSharingImport.svg │ ├── mActionShowAllLayers.svg │ ├── mActionShowAllLayersGray.svg │ ├── mActionShowBookmarks.svg │ ├── mActionShowHideLabels.svg │ ├── mActionShowPinnedLabels.svg │ ├── mActionShowPluginManager.svg │ ├── mActionShowRasterCalculator.png │ ├── mActionShowSelectedLayers.svg │ ├── mActionSimplify.svg │ ├── mActionSplitFeatures.svg │ ├── mActionSplitParts.svg │ ├── mActionStart.svg │ ├── mActionStyleManager.svg │ ├── mActionSum.svg │ ├── mActionSvgAnnotation.svg │ ├── mActionTextAnnotation.svg │ ├── mActionToggleEditing.svg │ ├── mActionTouch.svg │ ├── mActionTouch2.png │ ├── mActionTracing.svg │ ├── mActionUndo.svg │ ├── mActionUngroupItems.svg │ ├── mActionUnlink.svg │ ├── mActionUnlockAll.svg │ ├── mActionVertexTool.svg │ ├── mActionVertexToolActiveLayer.svg │ ├── mActionWhatsThis.svg │ ├── mActionZoomActual.svg │ ├── mActionZoomFullExtent.svg │ ├── mActionZoomIn.svg │ ├── mActionZoomLast.svg │ ├── mActionZoomNext.svg │ ├── mActionZoomOut.svg │ ├── mActionZoomToArea.svg │ ├── mActionZoomToBookmark.svg │ ├── mActionZoomToLayer.svg │ ├── mActionZoomToSelected.svg │ ├── mAddToProject.svg │ ├── mDockify.svg │ ├── mGeoPackage.svg │ ├── mIconAfs.svg │ ├── mIconAllRings.svg │ ├── mIconAms.svg │ ├── mIconAtlas.svg │ ├── mIconAutoPlacementSettings.svg │ ├── mIconAuxiliaryStorage.svg │ ├── mIconCertificate.svg │ ├── mIconCertificateMissing.svg │ ├── mIconCertificateTrusted.svg │ ├── mIconCertificateUntrusted.svg │ ├── mIconClearText.svg │ ├── mIconClearTextHover.svg │ ├── mIconClose.svg │ ├── mIconCloseTab.svg │ ├── mIconCloseTabHover.svg │ ├── mIconCollapse.svg │ ├── mIconCollapseSmall.svg │ ├── mIconColorBox.svg │ ├── mIconColorPicker.svg │ ├── mIconColorSwatches.svg │ ├── mIconColorWheel.svg │ ├── mIconConnect.svg │ ├── mIconCritical.svg │ ├── mIconDataDefine.svg │ ├── mIconDataDefineError.svg │ ├── mIconDataDefineExpression.svg │ ├── mIconDataDefineExpressionError.svg │ ├── mIconDataDefineExpressionOn.svg │ ├── mIconDataDefineOn.svg │ ├── mIconDb2.svg │ ├── mIconDbSchema.svg │ ├── mIconDelete.svg │ ├── mIconDeselected.svg │ ├── mIconDropDownMenu.svg │ ├── mIconEditableEdits.svg │ ├── mIconExpand.svg │ ├── mIconExpandSmall.svg │ ├── mIconExpression.svg │ ├── mIconExpressionFilter.svg │ ├── mIconExpressionPreview.svg │ ├── mIconExpressionSelect.svg │ ├── mIconExteriorRing.svg │ ├── mIconFavourites.svg │ ├── mIconFieldBool.svg │ ├── mIconFieldDate.svg │ ├── mIconFieldDateTime.svg │ ├── mIconFieldFloat.svg │ ├── mIconFieldInteger.svg │ ├── mIconFieldText.svg │ ├── mIconFieldTime.svg │ ├── mIconFile.svg │ ├── mIconFileLink.svg │ ├── mIconFolder.svg │ ├── mIconFolderHome.svg │ ├── mIconFolderLink.svg │ ├── mIconFolderOpen.svg │ ├── mIconFolderProject.svg │ ├── mIconFormSelect.svg │ ├── mIconGPU.svg │ ├── mIconGeonode.svg │ ├── mIconHistory.svg │ ├── mIconImport.gif │ ├── mIconInfo.svg │ ├── mIconInteriorRings.svg │ ├── mIconJoinHasNotUpsertOnEdit.svg │ ├── mIconJoinNotEditable.svg │ ├── mIconJoinedLayerNotEditable.svg │ ├── mIconLabelQuadrantCenter.svg │ ├── mIconLabelQuadrantOffset.svg │ ├── mIconLayer.png │ ├── mIconLayout.svg │ ├── mIconLineLayer.svg │ ├── mIconListView.svg │ ├── mIconLoading.gif │ ├── mIconMeshLayer.svg │ ├── mIconMssql.svg │ ├── mIconNoPyramid.svg │ ├── mIconOracle.svg │ ├── mIconOws.svg │ ├── mIconPaintEffects.svg │ ├── mIconPointLayer.svg │ ├── mIconPolygonLayer.svg │ ├── mIconPostgis.svg │ ├── mIconProjectionDisabled.svg │ ├── mIconProjectionEnabled.svg │ ├── mIconProperties.svg │ ├── mIconPyramid.svg │ ├── mIconPythonFile.svg │ ├── mIconQgsProjectFile.svg │ ├── mIconQptFile.svg │ ├── mIconRaster.svg │ ├── mIconRasterGroup.svg │ ├── mIconRasterLayer.svg │ ├── mIconRasterLink.svg │ ├── mIconRenderingDisabled.svg │ ├── mIconRenderingEnabled.svg │ ├── mIconReport.svg │ ├── mIconSelectAdd.svg │ ├── mIconSelectIntersect.svg │ ├── mIconSelectRemove.svg │ ├── mIconSelected.svg │ ├── mIconSnapping.svg │ ├── mIconSnappingActiveLayer.svg │ ├── mIconSnappingAdvanced.svg │ ├── mIconSnappingAllLayers.svg │ ├── mIconSnappingIntersection.svg │ ├── mIconSnappingSegment.svg │ ├── mIconSnappingVertex.svg │ ├── mIconSnappingVertexAndSegment.svg │ ├── mIconSpatialite.svg │ ├── mIconStopRendering.svg │ ├── mIconSuccess.svg │ ├── mIconTableLayer.svg │ ├── mIconTimerContinue.svg │ ├── mIconTimerPause.svg │ ├── mIconTopologicalEditing.svg │ ├── mIconTreeView.svg │ ├── mIconVector.svg │ ├── mIconVirtualLayer.svg │ ├── mIconWarning.svg │ ├── mIconWcs.svg │ ├── mIconWfs.svg │ ├── mIconWms.svg │ ├── mIconZip.svg │ ├── mIconZoom.svg │ ├── mIndicatorBadLayer.svg │ ├── mIndicatorEmbedded.svg │ ├── mIndicatorFilter.svg │ ├── mIndicatorMemory.svg │ ├── mIndicatorNonRemovable.svg │ ├── mLayoutItem.svg │ ├── mLayoutItem3DMap.svg │ ├── mLayoutItemHtml.svg │ ├── mLayoutItemLabel.svg │ ├── mLayoutItemLegend.svg │ ├── mLayoutItemMap.svg │ ├── mLayoutItemPicture.svg │ ├── mLayoutItemPolygon.svg │ ├── mLayoutItemPolyline.svg │ ├── mLayoutItemScaleBar.svg │ ├── mLayoutItemShapeEllipse.svg │ ├── mLayoutItemShapeRectangle.svg │ ├── mLayoutItemShapeTriangle.svg │ ├── mLayoutItemTable.svg │ ├── mMessageLog.svg │ ├── mMessageLogRead.svg │ ├── mSourceFields.svg │ ├── mTaskCancel.svg │ ├── mTaskComplete.svg │ ├── mTaskOnHold.svg │ ├── mTaskQueued.svg │ ├── mTaskRunning.svg │ ├── mTaskTerminated.svg │ ├── multieditChangedValues.svg │ ├── multieditMixedValues.svg │ ├── multieditSameValues.svg │ ├── north_arrow.svg │ ├── pie-chart.svg │ ├── pin.svg │ ├── pluginDeprecated.svg │ ├── pluginExperimental.png │ ├── pluginNew.svg │ ├── pluginUpgrade.svg │ ├── processingAlgorithm.svg │ ├── processingModel.svg │ ├── processingResult.svg │ ├── processingScript.svg │ ├── propertyicons │ ├── CRS.svg │ ├── action.svg │ ├── attributes.svg │ ├── colors.svg │ ├── datadefined.svg │ ├── diagram.svg │ ├── digitizing.svg │ ├── display.svg │ ├── editmetadata.svg │ ├── gdal.svg │ ├── general.svg │ ├── histogram.svg │ ├── join.svg │ ├── labelbackground.svg │ ├── labelbuffer.svg │ ├── labelformatting.svg │ ├── labelplacement.svg │ ├── labels.svg │ ├── labelshadow.svg │ ├── labeltext.svg │ ├── locale.svg │ ├── map_tools.svg │ ├── meshcontours.svg │ ├── meshcontoursoff.svg │ ├── meshframe.svg │ ├── meshvectors.svg │ ├── meshvectorsoff.svg │ ├── metadata.svg │ ├── network_and_proxy.svg │ ├── overlay.svg │ ├── plugin-incompatible.svg │ ├── plugin-install_from_zip.svg │ ├── plugin-installed.svg │ ├── plugin-new.svg │ ├── plugin-upgrade.svg │ ├── plugin.svg │ ├── plugins.svg │ ├── pyramids.svg │ ├── render.svg │ ├── rendering.svg │ ├── settings.svg │ ├── spacer.svg │ ├── stylepreset.svg │ ├── symbology.svg │ ├── system.svg │ └── transparency.svg │ ├── providerGdal.svg │ ├── providerGrass.svg │ ├── providerQgis.svg │ ├── providerSaga.svg │ ├── relation.svg │ ├── renderer25dSymbol.svg │ ├── rendererCategorizedSymbol.svg │ ├── rendererGraduatedSymbol.svg │ ├── rendererGrassSymbol.svg │ ├── rendererHeatmapSymbol.svg │ ├── rendererInvertedSymbol.svg │ ├── rendererNullSymbol.svg │ ├── rendererPointClusterSymbol.svg │ ├── rendererPointDisplacementSymbol.svg │ ├── rendererRuleBasedSymbol.svg │ ├── rendererSingleSymbol.svg │ ├── repositoryConnected.svg │ ├── repositoryDisabled.svg │ ├── repositoryUnavailable.svg │ ├── search.svg │ ├── sort.svg │ ├── stars_empty.svg │ ├── stars_full.svg │ ├── styleicons │ ├── color.svg │ ├── multibandcolor.svg │ ├── paletted.svg │ ├── singlebandgray.svg │ └── singlebandpseudocolor.svg │ ├── svgbase │ ├── action.svg │ ├── delete.svg │ ├── deselect.svg │ ├── hammer.svg │ ├── mouse-pointer.svg │ ├── qgismap.svg │ ├── rgb_values.txt │ ├── screwdriver.svg │ ├── vector-layer.svg │ └── worldmap.svg │ ├── symbologyAdd.svg │ ├── symbologyEdit.svg │ ├── symbologyRemove.svg │ ├── sync_views.svg │ ├── text.svg │ ├── tracking.svg │ ├── transformed.svg │ ├── transp-background_8x8.png │ ├── unlocked.svg │ ├── unlockedGray.svg │ ├── user.svg │ └── vector_grid.svg ├── src ├── common │ ├── geodatacontainer.cpp │ └── geounitmanager.cpp ├── components │ ├── geobrowsercomponent.cpp │ ├── geocomponent.cpp │ └── geolayerscomponent.cpp ├── items │ ├── geocolorizepathitem.cpp │ ├── geoitem.cpp │ ├── geomarkeritem.cpp │ ├── geomultipositionItem.cpp │ ├── geosectoritem.cpp │ ├── geosimplemarkeritem.cpp │ └── geotextitem.cpp ├── mapwidget.cpp ├── tools │ ├── geo2positionitemtool.cpp │ ├── geomeasuretool.cpp │ └── geomultipositiontool.cpp └── widgets │ └── geomapcanvas.cpp ├── test └── GeoViewerTest │ ├── CMakeLists.txt │ ├── icons.qrc │ ├── icons │ └── airplane-black.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── qgis │ ├── qgsbrowserdirectorypropertiesbase.ui │ ├── qgsbrowserdockwidgetbase.ui │ ├── qgsbrowserlayerpropertiesbase.ui │ └── qgsbrowserpropertiesdialogbase.ui └── ui └── mapwidget.ui /.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/.directory -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /debug/ 2 | *.txt.user 3 | /bin/ 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /GeoViewer/common/geodatacontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/common/geodatacontainer.h -------------------------------------------------------------------------------- /GeoViewer/common/geounitmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/common/geounitmanager.h -------------------------------------------------------------------------------- /GeoViewer/common/mapenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/common/mapenums.h -------------------------------------------------------------------------------- /GeoViewer/common/mapstructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/common/mapstructures.h -------------------------------------------------------------------------------- /GeoViewer/components/geobrowsercomponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/components/geobrowsercomponent.h -------------------------------------------------------------------------------- /GeoViewer/components/geocomponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/components/geocomponent.h -------------------------------------------------------------------------------- /GeoViewer/components/geolayerscomponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/components/geolayerscomponent.h -------------------------------------------------------------------------------- /GeoViewer/items/geocolorizepathitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/items/geocolorizepathitem.h -------------------------------------------------------------------------------- /GeoViewer/items/geoitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/items/geoitem.h -------------------------------------------------------------------------------- /GeoViewer/items/geomarkeritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/items/geomarkeritem.h -------------------------------------------------------------------------------- /GeoViewer/items/geomultipositionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/items/geomultipositionItem.h -------------------------------------------------------------------------------- /GeoViewer/items/geosectoritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/items/geosectoritem.h -------------------------------------------------------------------------------- /GeoViewer/items/geosimplemarkeritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/items/geosimplemarkeritem.h -------------------------------------------------------------------------------- /GeoViewer/items/geotextitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/items/geotextitem.h -------------------------------------------------------------------------------- /GeoViewer/mapwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/mapwidget.h -------------------------------------------------------------------------------- /GeoViewer/tools/geo2positionitemtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/tools/geo2positionitemtool.h -------------------------------------------------------------------------------- /GeoViewer/tools/geomeasuretool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/tools/geomeasuretool.h -------------------------------------------------------------------------------- /GeoViewer/tools/geomultipositiontool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/tools/geomultipositiontool.h -------------------------------------------------------------------------------- /GeoViewer/widgets/geomapcanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/GeoViewer/widgets/geomapcanvas.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/README.md -------------------------------------------------------------------------------- /qgis/qgsbrowserdirectorypropertiesbase.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qgis/qgsbrowserdirectorypropertiesbase.ui -------------------------------------------------------------------------------- /qgis/qgsbrowserdockwidgetbase.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qgis/qgsbrowserdockwidgetbase.ui -------------------------------------------------------------------------------- /qgis/qgsbrowserlayerpropertiesbase.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qgis/qgsbrowserlayerpropertiesbase.ui -------------------------------------------------------------------------------- /qgis/qgsbrowserpropertiesdialogbase.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qgis/qgsbrowserpropertiesdialogbase.ui -------------------------------------------------------------------------------- /qgis/qgsdatumtransformdialogbase.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qgis/qgsdatumtransformdialogbase.ui -------------------------------------------------------------------------------- /qgis/qgsxyzconnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qgis/qgsxyzconnection.cpp -------------------------------------------------------------------------------- /qgis/qgsxyzconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qgis/qgsxyzconnection.h -------------------------------------------------------------------------------- /qgis/qgsxyzconnectiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qgis/qgsxyzconnectiondialog.cpp -------------------------------------------------------------------------------- /qgis/qgsxyzconnectiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qgis/qgsxyzconnectiondialog.h -------------------------------------------------------------------------------- /qgis/qgsxyzconnectiondialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qgis/qgsxyzconnectiondialog.ui -------------------------------------------------------------------------------- /qrc/images/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/CMakeLists.txt -------------------------------------------------------------------------------- /qrc/images/composer/missing_image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/composer/missing_image.svg -------------------------------------------------------------------------------- /qrc/images/flags/af.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/af.svg -------------------------------------------------------------------------------- /qrc/images/flags/ar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/ar.svg -------------------------------------------------------------------------------- /qrc/images/flags/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/bg.svg -------------------------------------------------------------------------------- /qrc/images/flags/bn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/bn.svg -------------------------------------------------------------------------------- /qrc/images/flags/bs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/bs.svg -------------------------------------------------------------------------------- /qrc/images/flags/ca.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/ca.svg -------------------------------------------------------------------------------- /qrc/images/flags/cs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/cs.svg -------------------------------------------------------------------------------- /qrc/images/flags/cy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/cy.svg -------------------------------------------------------------------------------- /qrc/images/flags/da.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/da.svg -------------------------------------------------------------------------------- /qrc/images/flags/de.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/de.svg -------------------------------------------------------------------------------- /qrc/images/flags/el.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/el.svg -------------------------------------------------------------------------------- /qrc/images/flags/en_GB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/en_GB.svg -------------------------------------------------------------------------------- /qrc/images/flags/en_US.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/en_US.svg -------------------------------------------------------------------------------- /qrc/images/flags/eo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/eo.svg -------------------------------------------------------------------------------- /qrc/images/flags/es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/es.svg -------------------------------------------------------------------------------- /qrc/images/flags/et.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/et.svg -------------------------------------------------------------------------------- /qrc/images/flags/eu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/eu.svg -------------------------------------------------------------------------------- /qrc/images/flags/fa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/fa.svg -------------------------------------------------------------------------------- /qrc/images/flags/fi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/fi.svg -------------------------------------------------------------------------------- /qrc/images/flags/fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/fr.svg -------------------------------------------------------------------------------- /qrc/images/flags/ga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/ga.svg -------------------------------------------------------------------------------- /qrc/images/flags/gd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/gd.svg -------------------------------------------------------------------------------- /qrc/images/flags/gl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/gl.svg -------------------------------------------------------------------------------- /qrc/images/flags/he.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/he.svg -------------------------------------------------------------------------------- /qrc/images/flags/hi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/hi.svg -------------------------------------------------------------------------------- /qrc/images/flags/hr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/hr.svg -------------------------------------------------------------------------------- /qrc/images/flags/hu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/hu.svg -------------------------------------------------------------------------------- /qrc/images/flags/id.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/id.svg -------------------------------------------------------------------------------- /qrc/images/flags/is.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/is.svg -------------------------------------------------------------------------------- /qrc/images/flags/it.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/it.svg -------------------------------------------------------------------------------- /qrc/images/flags/ja.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/ja.svg -------------------------------------------------------------------------------- /qrc/images/flags/ka.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/ka.svg -------------------------------------------------------------------------------- /qrc/images/flags/km.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/km.svg -------------------------------------------------------------------------------- /qrc/images/flags/ko.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/ko.svg -------------------------------------------------------------------------------- /qrc/images/flags/ky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/ky.svg -------------------------------------------------------------------------------- /qrc/images/flags/lo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/lo.svg -------------------------------------------------------------------------------- /qrc/images/flags/lt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/lt.svg -------------------------------------------------------------------------------- /qrc/images/flags/lv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/lv.svg -------------------------------------------------------------------------------- /qrc/images/flags/ml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/ml.svg -------------------------------------------------------------------------------- /qrc/images/flags/mn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/mn.svg -------------------------------------------------------------------------------- /qrc/images/flags/mr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/mr.svg -------------------------------------------------------------------------------- /qrc/images/flags/mt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/mt.svg -------------------------------------------------------------------------------- /qrc/images/flags/nb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/nb.svg -------------------------------------------------------------------------------- /qrc/images/flags/nl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/nl.svg -------------------------------------------------------------------------------- /qrc/images/flags/pl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/pl.svg -------------------------------------------------------------------------------- /qrc/images/flags/pt_BR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/pt_BR.svg -------------------------------------------------------------------------------- /qrc/images/flags/pt_PT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/pt_PT.svg -------------------------------------------------------------------------------- /qrc/images/flags/ro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/ro.svg -------------------------------------------------------------------------------- /qrc/images/flags/ru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/ru.svg -------------------------------------------------------------------------------- /qrc/images/flags/sk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/sk.svg -------------------------------------------------------------------------------- /qrc/images/flags/sl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/sl.svg -------------------------------------------------------------------------------- /qrc/images/flags/sq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/sq.svg -------------------------------------------------------------------------------- /qrc/images/flags/sr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/sr.svg -------------------------------------------------------------------------------- /qrc/images/flags/sv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/sv.svg -------------------------------------------------------------------------------- /qrc/images/flags/sw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/sw.svg -------------------------------------------------------------------------------- /qrc/images/flags/ta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/ta.svg -------------------------------------------------------------------------------- /qrc/images/flags/te.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/te.svg -------------------------------------------------------------------------------- /qrc/images/flags/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/th.svg -------------------------------------------------------------------------------- /qrc/images/flags/tl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/tl.svg -------------------------------------------------------------------------------- /qrc/images/flags/tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/tr.svg -------------------------------------------------------------------------------- /qrc/images/flags/uk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/uk.svg -------------------------------------------------------------------------------- /qrc/images/flags/vi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/vi.svg -------------------------------------------------------------------------------- /qrc/images/flags/xh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/xh.svg -------------------------------------------------------------------------------- /qrc/images/flags/zh-Hans.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/zh-Hans.svg -------------------------------------------------------------------------------- /qrc/images/flags/zh-Hant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/zh-Hant.svg -------------------------------------------------------------------------------- /qrc/images/flags/zh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/flags/zh.svg -------------------------------------------------------------------------------- /qrc/images/icons/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/CMakeLists.txt -------------------------------------------------------------------------------- /qrc/images/icons/mac/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/CMakeLists.txt -------------------------------------------------------------------------------- /qrc/images/icons/mac/asc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/asc.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/ddf.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/ddf.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/dem.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/dem.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/dt0.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/dt0.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/dxf.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/dxf.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/gml.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/gml.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/img.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/img.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/jp2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/jp2.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/mif.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/mif.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/mldata.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/mldata.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/qgis.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/qgis.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/qgs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/qgs.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/qgs.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/qgs.psd -------------------------------------------------------------------------------- /qrc/images/icons/mac/qlr.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/qlr.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/qml.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/qml.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/qpt.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/qpt.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/shp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/shp.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/sqlite.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/sqlite.icns -------------------------------------------------------------------------------- /qrc/images/icons/mac/tiff.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/mac/tiff.icns -------------------------------------------------------------------------------- /qrc/images/icons/qbrowser-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qbrowser-icon.png -------------------------------------------------------------------------------- /qrc/images/icons/qbrowser_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qbrowser_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis-icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis-icon-16x16.png -------------------------------------------------------------------------------- /qrc/images/icons/qgis-icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis-icon-512x512.png -------------------------------------------------------------------------------- /qrc/images/icons/qgis-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis-icon-60x60.png -------------------------------------------------------------------------------- /qrc/images/icons/qgis-icon-macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis-icon-macos.png -------------------------------------------------------------------------------- /qrc/images/icons/qgis-mime-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis-mime-icon.png -------------------------------------------------------------------------------- /qrc/images/icons/qgis_asc_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_asc_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_ddf_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_ddf_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_dem_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_dem_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_dt0_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_dt0_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_dxf_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_dxf_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_gml_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_gml_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_img_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_img_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_jp2_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_jp2_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_mif_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_mif_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_mime_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_mime_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_mldata_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_mldata_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_qgs_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_qgs_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_qlr_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_qlr_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_qml_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_qml_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_qpt_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_qpt_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_shp_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_shp_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_sqlite_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_sqlite_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/qgis_tif_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/qgis_tif_icon.svg -------------------------------------------------------------------------------- /qrc/images/icons/sponsor_medals/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/icons/sponsor_medals/README -------------------------------------------------------------------------------- /qrc/images/images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/images.qrc -------------------------------------------------------------------------------- /qrc/images/north_arrows/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/north_arrows/default.png -------------------------------------------------------------------------------- /qrc/images/north_arrows/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/north_arrows/default.svg -------------------------------------------------------------------------------- /qrc/images/north_arrows/gpsarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/north_arrows/gpsarrow.svg -------------------------------------------------------------------------------- /qrc/images/north_arrows/gpsarrow2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/north_arrows/gpsarrow2.svg -------------------------------------------------------------------------------- /qrc/images/qgis_tips/symbol_levels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/qgis_tips/symbol_levels.png -------------------------------------------------------------------------------- /qrc/images/splash/README_FONTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/splash/README_FONTS -------------------------------------------------------------------------------- /qrc/images/splash/README_SPLASH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/splash/README_SPLASH -------------------------------------------------------------------------------- /qrc/images/splash/dev-splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/splash/dev-splash.png -------------------------------------------------------------------------------- /qrc/images/splash/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/splash/splash.png -------------------------------------------------------------------------------- /qrc/images/splash/splash_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/splash/splash_mask.png -------------------------------------------------------------------------------- /qrc/images/splash/web_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/splash/web_banner.jpg -------------------------------------------------------------------------------- /qrc/images/svg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/CMakeLists.txt -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_bench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_bench.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_court.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_court.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_firestation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_firestation.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_firestation2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_firestation2.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_firestation3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_firestation3.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_fountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_fountain.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_information.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_library.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_police.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_police.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_police2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_police2.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_post_box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_post_box.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_post_office.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_post_office.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_prison.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_prison.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_recycling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_recycling.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_survey_point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_survey_point.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_telephone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_telephone.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_toilets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_toilets.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_toilets_men.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_toilets_men.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_toilets_women.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_toilets_women.svg -------------------------------------------------------------------------------- /qrc/images/svg/amenity/amenity_waste_bin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/amenity/amenity_waste_bin.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/Arrow_01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/Arrow_01.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/Arrow_02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/Arrow_02.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/Arrow_03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/Arrow_03.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/Arrow_04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/Arrow_04.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/Arrow_05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/Arrow_05.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/Arrow_06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/Arrow_06.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/NorthArrow_01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/NorthArrow_01.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/NorthArrow_02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/NorthArrow_02.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/NorthArrow_03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/NorthArrow_03.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/NorthArrow_04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/NorthArrow_04.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/NorthArrow_05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/NorthArrow_05.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/NorthArrow_06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/NorthArrow_06.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/NorthArrow_07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/NorthArrow_07.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/NorthArrow_08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/NorthArrow_08.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/NorthArrow_09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/NorthArrow_09.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/NorthArrow_10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/NorthArrow_10.svg -------------------------------------------------------------------------------- /qrc/images/svg/arrows/NorthArrow_11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/arrows/NorthArrow_11.svg -------------------------------------------------------------------------------- /qrc/images/svg/backgrounds/background_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/backgrounds/background_circle.svg -------------------------------------------------------------------------------- /qrc/images/svg/backgrounds/background_octogon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/backgrounds/background_octogon.svg -------------------------------------------------------------------------------- /qrc/images/svg/backgrounds/background_safety.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/backgrounds/background_safety.svg -------------------------------------------------------------------------------- /qrc/images/svg/backgrounds/background_square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/backgrounds/background_square.svg -------------------------------------------------------------------------------- /qrc/images/svg/components/component_indoor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/components/component_indoor.svg -------------------------------------------------------------------------------- /qrc/images/svg/crosses/Cross1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/crosses/Cross1.svg -------------------------------------------------------------------------------- /qrc/images/svg/crosses/Cross2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/crosses/Cross2.svg -------------------------------------------------------------------------------- /qrc/images/svg/crosses/Cross4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/crosses/Cross4.svg -------------------------------------------------------------------------------- /qrc/images/svg/crosses/Cross5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/crosses/Cross5.svg -------------------------------------------------------------------------------- /qrc/images/svg/crosses/Cross6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/crosses/Cross6.svg -------------------------------------------------------------------------------- /qrc/images/svg/crosses/Star1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/crosses/Star1.svg -------------------------------------------------------------------------------- /qrc/images/svg/crosses/Star2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/crosses/Star2.svg -------------------------------------------------------------------------------- /qrc/images/svg/crosses/Star3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/crosses/Star3.svg -------------------------------------------------------------------------------- /qrc/images/svg/emergency/amenity=fire_station.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/emergency/amenity=fire_station.svg -------------------------------------------------------------------------------- /qrc/images/svg/emergency/amenity=hospital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/emergency/amenity=hospital.svg -------------------------------------------------------------------------------- /qrc/images/svg/emergency/amenity=police.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/emergency/amenity=police.svg -------------------------------------------------------------------------------- /qrc/images/svg/entertainment/amenity=bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/entertainment/amenity=bar.svg -------------------------------------------------------------------------------- /qrc/images/svg/entertainment/amenity=cafe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/entertainment/amenity=cafe.svg -------------------------------------------------------------------------------- /qrc/images/svg/entertainment/amenity=cinema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/entertainment/amenity=cinema.svg -------------------------------------------------------------------------------- /qrc/images/svg/entertainment/amenity=pub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/entertainment/amenity=pub.svg -------------------------------------------------------------------------------- /qrc/images/svg/entertainment/amenity=theatre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/entertainment/amenity=theatre.svg -------------------------------------------------------------------------------- /qrc/images/svg/food/food_bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/food/food_bar.svg -------------------------------------------------------------------------------- /qrc/images/svg/food/food_cafe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/food/food_cafe.svg -------------------------------------------------------------------------------- /qrc/images/svg/food/food_drinkingtap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/food/food_drinkingtap.svg -------------------------------------------------------------------------------- /qrc/images/svg/food/food_fastfood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/food/food_fastfood.svg -------------------------------------------------------------------------------- /qrc/images/svg/food/food_fastfood2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/food/food_fastfood2.svg -------------------------------------------------------------------------------- /qrc/images/svg/food/food_pub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/food/food_pub.svg -------------------------------------------------------------------------------- /qrc/images/svg/food/food_restaurant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/food/food_restaurant.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/anchor.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/bank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/bank.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/boat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/boat.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/camera.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/car.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/city_building.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/city_building.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/city_large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/city_large.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/city_medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/city_medium.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/city_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/city_small.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/conveneince.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/conveneince.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/couple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/couple.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/cross.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/deer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/deer.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/dollar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/dollar.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/fish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/fish.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/flag.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/food.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/gas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/gas.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/golf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/golf.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/h.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/h.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/house.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/parachute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/parachute.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/parking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/parking.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/phone.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/plane.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/plane_orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/plane_orange.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/point.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/question.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/shipwreck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/shipwreck.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/skier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/skier.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/skull.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/swimmer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/swimmer.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/table.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/teepee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/teepee.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/tree.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/walker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/walker.svg -------------------------------------------------------------------------------- /qrc/images/svg/gpsicons/waypoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/gpsicons/waypoint.svg -------------------------------------------------------------------------------- /qrc/images/svg/health/health_dentist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/health/health_dentist.svg -------------------------------------------------------------------------------- /qrc/images/svg/health/health_doctors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/health/health_doctors.svg -------------------------------------------------------------------------------- /qrc/images/svg/health/health_hospital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/health/health_hospital.svg -------------------------------------------------------------------------------- /qrc/images/svg/health/health_opticians.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/health/health_opticians.svg -------------------------------------------------------------------------------- /qrc/images/svg/health/health_pharmacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/health/health_pharmacy.svg -------------------------------------------------------------------------------- /qrc/images/svg/health/health_veterinary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/health/health_veterinary.svg -------------------------------------------------------------------------------- /qrc/images/svg/landmark/amenity=school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/landmark/amenity=school.svg -------------------------------------------------------------------------------- /qrc/images/svg/landmark/religion=buddhist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/landmark/religion=buddhist.svg -------------------------------------------------------------------------------- /qrc/images/svg/landmark/religion=christian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/landmark/religion=christian.svg -------------------------------------------------------------------------------- /qrc/images/svg/landmark/religion=hindu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/landmark/religion=hindu.svg -------------------------------------------------------------------------------- /qrc/images/svg/landmark/religion=jewish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/landmark/religion=jewish.svg -------------------------------------------------------------------------------- /qrc/images/svg/landmark/religion=muslim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/landmark/religion=muslim.svg -------------------------------------------------------------------------------- /qrc/images/svg/landmark/religion=pastafarian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/landmark/religion=pastafarian.svg -------------------------------------------------------------------------------- /qrc/images/svg/landmark/religion=sikh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/landmark/religion=sikh.svg -------------------------------------------------------------------------------- /qrc/images/svg/landmark/tourism=museum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/landmark/tourism=museum.svg -------------------------------------------------------------------------------- /qrc/images/svg/money/money_atm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/money/money_atm.svg -------------------------------------------------------------------------------- /qrc/images/svg/money/money_atm2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/money/money_atm2.svg -------------------------------------------------------------------------------- /qrc/images/svg/money/money_bank2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/money/money_bank2.svg -------------------------------------------------------------------------------- /qrc/images/svg/money/money_currency_exchange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/money/money_currency_exchange.svg -------------------------------------------------------------------------------- /qrc/images/svg/religion/place_of_worship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/religion/place_of_worship.svg -------------------------------------------------------------------------------- /qrc/images/svg/religion/place_of_worship_jain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/religion/place_of_worship_jain.svg -------------------------------------------------------------------------------- /qrc/images/svg/religion/place_of_worship_sikh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/religion/place_of_worship_sikh.svg -------------------------------------------------------------------------------- /qrc/images/svg/services/amenity=atm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/services/amenity=atm.svg -------------------------------------------------------------------------------- /qrc/images/svg/services/amenity=pharmacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/services/amenity=pharmacy.svg -------------------------------------------------------------------------------- /qrc/images/svg/services/amenity=post_box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/services/amenity=post_box.svg -------------------------------------------------------------------------------- /qrc/images/svg/services/amenity=recycling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/services/amenity=recycling.svg -------------------------------------------------------------------------------- /qrc/images/svg/services/amenity=telephone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/services/amenity=telephone.svg -------------------------------------------------------------------------------- /qrc/images/svg/services/shop=convenience.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/services/shop=convenience.svg -------------------------------------------------------------------------------- /qrc/images/svg/services/shop=supermarket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/services/shop=supermarket.svg -------------------------------------------------------------------------------- /qrc/images/svg/services/tourism=hotel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/services/tourism=hotel.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_alcohol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_alcohol.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_bakery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_bakery.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_bicycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_bicycle.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_book.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_butcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_butcher.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_car.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_car_repair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_car_repair.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_clothes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_clothes.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_convenience.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_convenience.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_diy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_diy.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_estateagent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_estateagent.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_estateagent2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_estateagent2.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_fish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_fish.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_gift.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_greengrocer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_greengrocer.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_hairdresser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_hairdresser.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_hifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_hifi.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_jewelry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_jewelry.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_laundrette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_laundrette.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_mobile_phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_mobile_phone.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_motorcycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_motorcycle.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_music.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_pet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_pet.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_pet2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_pet2.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_photo.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_supermarket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_supermarket.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_tackle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_tackle.svg -------------------------------------------------------------------------------- /qrc/images/svg/shopping/shopping_video_rental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/shopping/shopping_video_rental.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_archery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_archery.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_baseball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_baseball.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_cricket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_cricket.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_diving.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_diving.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_golf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_golf.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_gym.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_gym.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_gymnasium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_gymnasium.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_gymnasium2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_gymnasium2.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_hillclimbing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_hillclimbing.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_horse_racing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_horse_racing.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_iceskating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_iceskating.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_jetski.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_jetski.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_leisure_centre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_leisure_centre.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_motorracing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_motorracing.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_playground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_playground.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_sailing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_sailing.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_skiing_downhill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_skiing_downhill.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_snooker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_snooker.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_soccer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_soccer.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_swimming_indoor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_swimming_indoor.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_swimming_outdoor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_swimming_outdoor.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_tennis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_tennis.svg -------------------------------------------------------------------------------- /qrc/images/svg/sport/sport_windsurfing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/sport/sport_windsurfing.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/blue-marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/blue-marker.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/disability_lowvision.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/disability_lowvision.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/education_nursery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/education_nursery.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/education_school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/education_school.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/education_university.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/education_university.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/fountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/fountain.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/landuse_coniferous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/landuse_coniferous.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/landuse_deciduous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/landuse_deciduous.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/landuse_grass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/landuse_grass.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/landuse_hills.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/landuse_hills.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/landuse_quary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/landuse_quary.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/landuse_scrub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/landuse_scrub.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/landuse_swamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/landuse_swamp.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/poi_cave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/poi_cave.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/poi_embassy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/poi_embassy.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/poi_embassy2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/poi_embassy2.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/poi_military_bunker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/poi_military_bunker.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/poi_mine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/poi_mine.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/poi_mine_abandoned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/poi_mine_abandoned.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/poi_peak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/poi_peak.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/poi_place_city.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/poi_place_city.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/poi_place_town.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/poi_place_town.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/poi_place_village.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/poi_place_village.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/poi_point_of_interest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/poi_point_of_interest.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/poi_tower_power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/poi_tower_power.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/poi_tower_water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/poi_tower_water.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/red-marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/red-marker.svg -------------------------------------------------------------------------------- /qrc/images/svg/symbol/water_tower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/symbol/water_tower.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_archaeological.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_archaeological.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_art_gallery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_art_gallery.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_art_gallery2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_art_gallery2.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_battlefield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_battlefield.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_beach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_beach.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_casino.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_casino.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_castle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_castle.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_cinema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_cinema.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_cinema2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_cinema2.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_fountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_fountain.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_memorial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_memorial.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_monument.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_monument.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_museum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_museum.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_picnic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_picnic.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_ruin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_ruin.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_steam_train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_steam_train.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_theatre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_theatre.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_view_point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_view_point.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_waterwheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_waterwheel.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_windmill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_windmill.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_wreck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_wreck.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourist_zoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourist_zoo.svg -------------------------------------------------------------------------------- /qrc/images/svg/tourist/tourisum_fountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/tourist/tourisum_fountain.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/amenity=airport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/amenity=airport.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/amenity=parking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/amenity=parking.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/amenity=taxi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/amenity=taxi.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/barrier_bollard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/barrier_bollard.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/barrier_enterance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/barrier_enterance.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/barrier_gate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/barrier_gate.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/barrier_lift_gate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/barrier_lift_gate.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/barrier_stile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/barrier_stile.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/barrier_toll_booth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/barrier_toll_booth.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/highway=bus_stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/highway=bus_stop.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/railway=station.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/railway=station.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_aerodrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_aerodrome.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_aerodrome2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_aerodrome2.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_airport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_airport.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_airport2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_airport2.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_bus_stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_bus_stop.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_bus_stop2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_bus_stop2.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_car_share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_car_share.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_ford.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_ford.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_fuel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_fuel.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_fuel_lpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_fuel_lpg.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_lighthouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_lighthouse.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_marina.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_marina.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_parking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_parking.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_port.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_port.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_rental_car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_rental_car.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_taxi_rank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_taxi_rank.svg -------------------------------------------------------------------------------- /qrc/images/svg/transport/transport_tram_stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/transport/transport_tram_stop.svg -------------------------------------------------------------------------------- /qrc/images/svg/wind_roses/WindRose_01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/wind_roses/WindRose_01.svg -------------------------------------------------------------------------------- /qrc/images/svg/wind_roses/WindRose_02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/svg/wind_roses/WindRose_02.svg -------------------------------------------------------------------------------- /qrc/images/themes/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /qrc/images/themes/default/3d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/3d.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/CMakeLists.txt -------------------------------------------------------------------------------- /qrc/images/themes/default/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/LICENSE.TXT -------------------------------------------------------------------------------- /qrc/images/themes/default/cadtools/cad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/cadtools/cad.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/cadtools/delta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/cadtools/delta.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/cadtools/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/cadtools/lock.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/cadtools/parallel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/cadtools/parallel.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/cap_flat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/cap_flat.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/cap_round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/cap_round.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/cap_square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/cap_square.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/console/consoleHelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/console/consoleHelp.png -------------------------------------------------------------------------------- /qrc/images/themes/default/console/editorHelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/console/editorHelp.png -------------------------------------------------------------------------------- /qrc/images/themes/default/copyright_label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/copyright_label.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/cursors/mCrossHair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/cursors/mCrossHair.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/cursors/mIdentify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/cursors/mIdentify.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/cursors/mSampler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/cursors/mSampler.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/cursors/mSelect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/cursors/mSelect.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/cursors/mZoomIn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/cursors/mZoomIn.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/cursors/mZoomOut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/cursors/mZoomOut.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/dbmanager.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/dbmanager.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/dependencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/dependencies.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/diagramNone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/diagramNone.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/downloading_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/downloading_svg.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/extents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/extents.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/gpsicons/barchart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/gpsicons/barchart.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/gpsicons/polarchart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/gpsicons/polarchart.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/grass_location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/grass_location.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/grass_mapset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/grass_mapset.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/grass_mapset_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/grass_mapset_open.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/grass_mapset_search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/grass_mapset_search.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/heatmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/heatmap.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/histogram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/histogram.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/icon_template18x18.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/icon_template18x18.xcf -------------------------------------------------------------------------------- /qrc/images/themes/default/icon_template22x22.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/icon_template22x22.xcf -------------------------------------------------------------------------------- /qrc/images/themes/default/join_bevel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/join_bevel.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/join_miter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/join_miter.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/join_round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/join_round.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/labelingNone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/labelingNone.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/labelingObstacle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/labelingObstacle.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/labelingRuleBased.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/labelingRuleBased.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/labelingSingle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/labelingSingle.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/legend.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/locked.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/lockedGray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/lockedGray.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/locked_repeating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/locked_repeating.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mAction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mAction.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionActive.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAdd.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAdd3DMap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAdd3DMap.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddAfsLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddAfsLayer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddAmsLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddAmsLayer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddArrow.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddDb2Layer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddDb2Layer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddGroup.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddHtml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddHtml.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddImage.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddLayer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddLegend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddLegend.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddMap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddMap.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddMeshLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddMeshLayer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddNodesItem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddNodesItem.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddOgrLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddOgrLayer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddPart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddPart.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddPolygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddPolygon.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddPolyline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddPolyline.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddRing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddRing.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddTable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddTable.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddWcsLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddWcsLayer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddWfsLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddWfsLayer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAddWmsLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAddWmsLayer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAlignBottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAlignBottom.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAlignHCenter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAlignHCenter.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAlignLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAlignLeft.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAlignRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAlignRight.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAlignTop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAlignTop.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAlignVCenter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAlignVCenter.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAllEdits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAllEdits.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAnnotation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAnnotation.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionArrowDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionArrowDown.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionArrowLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionArrowLeft.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionArrowRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionArrowRight.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionArrowUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionArrowUp.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAtlasFirst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAtlasFirst.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAtlasLast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAtlasLast.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAtlasNext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAtlasNext.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionAtlasPrev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionAtlasPrev.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionCancelEdits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionCancelEdits.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionCaptureLine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionCaptureLine.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionCapturePoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionCapturePoint.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionCircleExtent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionCircleExtent.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionCollapseTree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionCollapseTree.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionContextHelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionContextHelp.png -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionCreateMemory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionCreateMemory.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionCreateTable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionCreateTable.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionDecreaseFont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionDecreaseFont.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionDeletePart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionDeletePart.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionDeleteRing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionDeleteRing.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionDeleteTable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionDeleteTable.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionDeselectAll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionDeselectAll.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionEditCopy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionEditCopy.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionEditCut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionEditCut.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionEditPaste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionEditPaste.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionEditTable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionEditTable.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionEllipseFoci.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionEllipseFoci.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionExpandTree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionExpandTree.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionExport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionExport.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionFileExit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionFileExit.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionFileNew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionFileNew.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionFileOpen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionFileOpen.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionFilePrint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionFilePrint.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionFileSave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionFileSave.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionFileSaveAs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionFileSaveAs.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionFillRing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionFillRing.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionFilter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionFilter.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionFilter2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionFilter2.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionFindReplace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionFindReplace.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionFolder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionFolder.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionFormView.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionFormView.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionGroupItems.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionGroupItems.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionHelpAbout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionHelpAbout.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionHelpContents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionHelpContents.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionHelpSponsors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionHelpSponsors.png -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionHistory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionHistory.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionIconView.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionIconView.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionIdentify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionIdentify.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionInOverview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionInOverview.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionIncreaseFont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionIncreaseFont.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionLabel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionLabel.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionLabeling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionLabeling.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionLink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionLink.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionLockExtent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionLockExtent.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionLockItems.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionLockItems.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionLowerItems.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionLowerItems.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionMapSettings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionMapSettings.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionMapTips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionMapTips.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionMeasure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionMeasure.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionMeasureAngle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionMeasureAngle.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionMeasureArea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionMeasureArea.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionMoveFeature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionMoveFeature.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionMoveLabel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionMoveLabel.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionMoveVertex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionMoveVertex.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionMultiEdit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionMultiEdit.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionNew3DMap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionNew3DMap.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionNewAttribute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionNewAttribute.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionNewBookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionNewBookmark.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionNewComposer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionNewComposer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionNewLayout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionNewLayout.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionNewMap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionNewMap.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionNewPage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionNewPage.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionNewReport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionNewReport.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionNewTableRow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionNewTableRow.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionOffsetCurve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionOffsetCurve.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionOpenTable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionOpenTable.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionOptions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionOptions.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionPan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionPan.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionPinLabels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionPinLabels.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionPropertyItem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionPropertyItem.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionQgisHomePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionQgisHomePage.png -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionRaiseItems.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionRaiseItems.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionRedo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionRedo.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionRefresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionRefresh.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionReload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionReload.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionRemove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionRemove.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionRemoveLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionRemoveLayer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionReshape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionReshape.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionResizeSquare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionResizeSquare.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionResizeWidest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionResizeWidest.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionReverseLine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionReverseLine.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionRotateLabel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionRotateLabel.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionSaveAsPDF.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionSaveAsPDF.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionSaveAsSVG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionSaveAsSVG.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionSaveEdits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionSaveEdits.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionScaleBar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionScaleBar.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionSelect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionSelect.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionSelectAll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionSelectAll.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionSelectPan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionSelectPan.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionSharing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionSharing.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionSimplify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionSimplify.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionStart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionStart.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionSum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionSum.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionTouch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionTouch.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionTouch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionTouch2.png -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionTracing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionTracing.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionUndo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionUndo.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionUnlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionUnlink.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionUnlockAll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionUnlockAll.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionWhatsThis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionWhatsThis.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionZoomIn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionZoomIn.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionZoomLast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionZoomLast.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionZoomNext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionZoomNext.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mActionZoomOut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mActionZoomOut.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mAddToProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mAddToProject.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mDockify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mDockify.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mGeoPackage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mGeoPackage.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconAfs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconAfs.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconAllRings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconAllRings.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconAms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconAms.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconAtlas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconAtlas.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconCertificate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconCertificate.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconClearText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconClearText.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconClose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconClose.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconCloseTab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconCloseTab.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconCollapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconCollapse.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconColorBox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconColorBox.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconColorPicker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconColorPicker.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconColorWheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconColorWheel.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconConnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconConnect.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconCritical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconCritical.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconDataDefine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconDataDefine.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconDb2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconDb2.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconDbSchema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconDbSchema.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconDelete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconDelete.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconDeselected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconDeselected.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconExpand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconExpand.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconExpandSmall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconExpandSmall.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconExpression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconExpression.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconFavourites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconFavourites.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconFieldBool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconFieldBool.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconFieldDate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconFieldDate.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconFieldFloat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconFieldFloat.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconFieldText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconFieldText.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconFieldTime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconFieldTime.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconFile.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconFileLink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconFileLink.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconFolder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconFolder.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconFolderHome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconFolderHome.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconFolderLink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconFolderLink.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconFolderOpen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconFolderOpen.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconFormSelect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconFormSelect.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconGPU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconGPU.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconGeonode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconGeonode.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconHistory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconHistory.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconImport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconImport.gif -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconInfo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconInfo.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconLayer.png -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconLayout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconLayout.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconLineLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconLineLayer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconListView.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconListView.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconLoading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconLoading.gif -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconMeshLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconMeshLayer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconMssql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconMssql.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconNoPyramid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconNoPyramid.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconOracle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconOracle.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconOws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconOws.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconPointLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconPointLayer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconPostgis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconPostgis.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconProperties.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconProperties.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconPyramid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconPyramid.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconPythonFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconPythonFile.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconQptFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconQptFile.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconRaster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconRaster.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconRasterGroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconRasterGroup.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconRasterLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconRasterLayer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconRasterLink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconRasterLink.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconReport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconReport.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconSelectAdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconSelectAdd.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconSelected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconSelected.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconSnapping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconSnapping.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconSpatialite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconSpatialite.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconSuccess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconSuccess.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconTableLayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconTableLayer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconTimerPause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconTimerPause.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconTreeView.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconTreeView.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconVector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconVector.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconWarning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconWarning.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconWcs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconWcs.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconWfs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconWfs.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconWms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconWms.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconZip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconZip.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIconZoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIconZoom.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIndicatorFilter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIndicatorFilter.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mIndicatorMemory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mIndicatorMemory.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mLayoutItem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mLayoutItem.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mLayoutItem3DMap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mLayoutItem3DMap.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mLayoutItemHtml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mLayoutItemHtml.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mLayoutItemLabel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mLayoutItemLabel.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mLayoutItemMap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mLayoutItemMap.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mLayoutItemTable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mLayoutItemTable.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mMessageLog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mMessageLog.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mMessageLogRead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mMessageLogRead.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mSourceFields.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mSourceFields.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mTaskCancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mTaskCancel.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mTaskComplete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mTaskComplete.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mTaskOnHold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mTaskOnHold.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mTaskQueued.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mTaskQueued.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mTaskRunning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mTaskRunning.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/mTaskTerminated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/mTaskTerminated.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/north_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/north_arrow.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/pie-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/pie-chart.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/pin.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/pluginDeprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/pluginDeprecated.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/pluginNew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/pluginNew.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/pluginUpgrade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/pluginUpgrade.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/processingModel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/processingModel.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/processingResult.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/processingResult.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/processingScript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/processingScript.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/providerGdal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/providerGdal.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/providerGrass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/providerGrass.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/providerQgis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/providerQgis.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/providerSaga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/providerSaga.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/relation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/relation.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/search.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/sort.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/stars_empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/stars_empty.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/stars_full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/stars_full.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/styleicons/color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/styleicons/color.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/svgbase/action.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/svgbase/action.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/svgbase/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/svgbase/delete.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/svgbase/deselect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/svgbase/deselect.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/svgbase/hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/svgbase/hammer.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/svgbase/qgismap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/svgbase/qgismap.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/svgbase/worldmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/svgbase/worldmap.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/symbologyAdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/symbologyAdd.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/symbologyEdit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/symbologyEdit.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/symbologyRemove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/symbologyRemove.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/sync_views.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/sync_views.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/text.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/tracking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/tracking.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/transformed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/transformed.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/unlocked.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/unlockedGray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/unlockedGray.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/user.svg -------------------------------------------------------------------------------- /qrc/images/themes/default/vector_grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/qrc/images/themes/default/vector_grid.svg -------------------------------------------------------------------------------- /src/common/geodatacontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/common/geodatacontainer.cpp -------------------------------------------------------------------------------- /src/common/geounitmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/common/geounitmanager.cpp -------------------------------------------------------------------------------- /src/components/geobrowsercomponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/components/geobrowsercomponent.cpp -------------------------------------------------------------------------------- /src/components/geocomponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/components/geocomponent.cpp -------------------------------------------------------------------------------- /src/components/geolayerscomponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/components/geolayerscomponent.cpp -------------------------------------------------------------------------------- /src/items/geocolorizepathitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/items/geocolorizepathitem.cpp -------------------------------------------------------------------------------- /src/items/geoitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/items/geoitem.cpp -------------------------------------------------------------------------------- /src/items/geomarkeritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/items/geomarkeritem.cpp -------------------------------------------------------------------------------- /src/items/geomultipositionItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/items/geomultipositionItem.cpp -------------------------------------------------------------------------------- /src/items/geosectoritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/items/geosectoritem.cpp -------------------------------------------------------------------------------- /src/items/geosimplemarkeritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/items/geosimplemarkeritem.cpp -------------------------------------------------------------------------------- /src/items/geotextitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/items/geotextitem.cpp -------------------------------------------------------------------------------- /src/mapwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/mapwidget.cpp -------------------------------------------------------------------------------- /src/tools/geo2positionitemtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/tools/geo2positionitemtool.cpp -------------------------------------------------------------------------------- /src/tools/geomeasuretool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/tools/geomeasuretool.cpp -------------------------------------------------------------------------------- /src/tools/geomultipositiontool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/tools/geomultipositiontool.cpp -------------------------------------------------------------------------------- /src/widgets/geomapcanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/src/widgets/geomapcanvas.cpp -------------------------------------------------------------------------------- /test/GeoViewerTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/test/GeoViewerTest/CMakeLists.txt -------------------------------------------------------------------------------- /test/GeoViewerTest/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/test/GeoViewerTest/icons.qrc -------------------------------------------------------------------------------- /test/GeoViewerTest/icons/airplane-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/test/GeoViewerTest/icons/airplane-black.png -------------------------------------------------------------------------------- /test/GeoViewerTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/test/GeoViewerTest/main.cpp -------------------------------------------------------------------------------- /test/GeoViewerTest/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/test/GeoViewerTest/mainwindow.cpp -------------------------------------------------------------------------------- /test/GeoViewerTest/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/test/GeoViewerTest/mainwindow.h -------------------------------------------------------------------------------- /test/GeoViewerTest/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/test/GeoViewerTest/mainwindow.ui -------------------------------------------------------------------------------- /ui/mapwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sajadblog/GeoViewer---QGIS-example/HEAD/ui/mapwidget.ui --------------------------------------------------------------------------------