MaintainedRoad
Published by MCDOT
County-maintained road network segments with maintenance district and surface attributes.
Arizona, United Statesroadsinfrastructure
Extent not published by this service Service facts
- Endpoint
- https://gis.maricopa.gov/dot/rest/services/Maintenance/MaintainedRoad/MapServer
- Type
- ESRI MapServer
- Layers
- 1
- Formats
- PNG32, PNG24, PNG, JPG, DIB, TIFF, EMF, PS, PDF, GIF, SVG, SVGZ, BMP
- CRS
- EPSG:102100
- CORS
- Enabled
- Response time
- 269 ms at last check
- Last verified
- 2026-07-24
- Discovered
- 1 time by Geo Hound users
Layers
| Id | Layer | Geometry | Features |
|---|
| 0 | County Maintained Roads36 fields| Name | Alias | Type |
|---|
| OBJECTID | OBJECTID | esriFieldTypeOID | | SHAPE | SHAPE | esriFieldTypeGeometry | | SHAPE.STLength() | SHAPE.STLength() | esriFieldTypeDouble | | RouteID | Route ID | esriFieldTypeString | | FromMeasure | From Measure | esriFieldTypeDouble | | ToMeasure | To Measure | esriFieldTypeDouble | | OnRoad | OnRoad | esriFieldTypeString | | FromRoad | FromRoad | esriFieldTypeString | | FromOffset | FromOffset | esriFieldTypeInteger | | ToRoad | ToRoad | esriFieldTypeString | | ToOffset | ToOffset | esriFieldTypeInteger | | MaintenanceDistrict | Maintenance District | esriFieldTypeString | | MaintenanceSide | Maintenance Side | esriFieldTypeString | | LengthInFeet | LengthInFeet | esriFieldTypeDouble | | SegmentID | SegmentID | esriFieldTypeString | | SubdivisionName | SubdivisionName | esriFieldTypeString | | SurfaceType | SurfaceType | esriFieldTypeString | | SurfaceDepth | SurfaceDepth | esriFieldTypeDouble | | BaseType | BaseType | esriFieldTypeString | | BaseDepth | BaseDepth | esriFieldTypeDouble | | SubBaseType | SubBaseType | esriFieldTypeString | | SubBaseDepth | SubBaseDepth | esriFieldTypeDouble | | SubgradeType | SubgradeType | esriFieldTypeString | | SubgradeDepth | SubgradeDepth | esriFieldTypeDouble | | TreatedSubgradeType | TreatedSubgradeType | esriFieldTypeString | | TreatedSubgradeDepth | TreatedSubgradeDepth | esriFieldTypeDouble | | RoadWidth | RoadWidth | esriFieldTypeSmallInteger | | LaneCount | LaneCount | esriFieldTypeSmallInteger | | Classification | Classification | esriFieldTypeString | | Street | Street | esriFieldTypeString | | ToDate | ToDate | esriFieldTypeDate | | InvertedCrown | InvertedCrown | esriFieldTypeString | | EstimatedOci | EstimatedOci | esriFieldTypeDouble | | EstimatedOcr | EstimatedOcr | esriFieldTypeString | | BoardOfSupervisorDistrict | BOS District | esriFieldTypeSmallInteger | | Primative | Primative | esriFieldTypeSmallInteger |
| line | |
Use this service
QGIS
Layer > Add Layer > Add ArcGIS REST Server Layer > New
Name: MaintainedRoad
URL: https://gis.maricopa.gov/dot/rest/services/Maintenance/MaintainedRoad/MapServer
ArcGIS Pro
Insert > Connections > Server > New ArcGIS Server
Server URL: https://gis.maricopa.gov/dot/rest/services/Maintenance/MaintainedRoad/MapServer
Leaflet
fetch('https://gis.maricopa.gov/dot/rest/services/Maintenance/MaintainedRoad/MapServer/0/query?where=1%3D1&outFields=*&f=geojson')
.then((r) => r.json())
.then((geojson) => L.geoJSON(geojson).addTo(map));Python
import geopandas as gpd
gdf = gpd.read_file(
'https://gis.maricopa.gov/dot/rest/services/Maintenance/MaintainedRoad/MapServer/0/query?where=1%3D1&outFields=*&f=geojson'
)